first assignment

117 days ago by ezquerroj

solve (2*x + 6, x) 
       
[x == -3]
[x == -3]
def f(x): return x^2+13 f(-1) 
       
14
14
solve([x-3<2],x) 
       
[[x < 5]]
[[x < 5]]
solve ([6-2*(x-3)==3+x],x) 
       
[x == 3]
[x == 3]
solve ([-5*x>20],x) 
       
[[x < -4]]
[[x < -4]]
f(x)=3-2*x^2 f(100) 
       
-19997
-19997
 
       
solve ([5+x<-3],x) 
       
[[x < -8]]
[[x < -8]]