First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

It's a Python list:

sage: sol=solve(x^2==1,x)
sage: sol[0]
x == -1
sage: sol[1]
x == 1
click to hide/show revision 2
No.2 Revision

It's a Python list:

sage: sol=solve(x^2==1,x)
sage: sol
[x == -1, x == 1]
sage: sol[0]
x == -1
sage: sol[1]
x == 1