This code
var("a b")
assume(a, "real")
equation=[a+b==0]
s=solve(equation, a, b)
print(s)
causes an AttributeError :
AttributeError: 'list' object has no attribute 'lhs'
The problem comes from the assumption in line 2. Can somebody explain?
1 | initial version |
This code
var("a b")
assume(a, "real")
equation=[a+b==0]
s=solve(equation, a, b)
print(s)
causes an AttributeError :
AttributeError: 'list' object has no attribute 'lhs'
The problem comes from the assumption in line 2. Can somebody explain?