Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

A workaround (tested with Sage Cell Server):

var('x y')
sol = []
for v in [x,y]:
    sol +=  solve(x + y == 0,v, solution_dict=True)
sol

gives

[{x: -y}, {y: -x}]