![]() | 1 | initial version |
I think that the simple way is to add a condition in the definition.
def f(x,n):
return R(x^3-x+188)
![]() | 2 | No.2 Revision |
I think that the simple way is to add a condition in the definition.definition.
R=2
def f(x,n):f(x,n):
if n==1 :
return R(x^3-x+188)
else :
return R(x^3-x+376)
return R(x^3-x+188)show(f(2,1),',',f(2,2))
![]() | 3 | No.3 Revision |
I think that the simple way is to add a condition in the definition.
R=2
def f(x,n):
if n==1 :
return R(x^3-x+188)
R*(x^3-x+188)
else :
return R(x^3-x+376) R*(x^3-x+376)
show(f(2,1),',',f(2,2))
![]() | 4 | No.4 Revision |
I think that the simple way is to add a condition in the definition.
R=2
def f(x,n):
if n==1 :
return R*(x^3-x+188)
else :
return R*(x^3-x+376)
R*(x^3-x+376)
show(f(2,1),',',f(2,2))
show(f(2,1),',',f(2,2))