1 | initial version |
Hi, could you please tell us which version of sage you are using? Going to sagenb.org
var('x y')
sol=solve(x + y, [x, y], solution_dict=True)
sol
gives
[{x: -y}]
which still surprises me since the system of equation is more than incomplete.