Sage will not solve this system of equations:
x^2 + y^2 == 25
x^2 - y^2 - y == 5           (-y^2)

{{{
sage: var('x y')
sage: solve( [x^2 + y^2 == 25, x^2 - y^2 - y == 5], x,y )
[]
}}}

Yet, save will solve this system of equations:
x^2 + y^2 == 25
x^2 + y^2 - y == 5           (+y^2)

{{{
sage: solve( [x^2 + y^2 == 25, x^2 + y^2 - y == 5], x,y )
[[x == -5*I*sqrt(15), y == 20], [x == 5*I*sqrt(15), y == 20]]
}}}

peace
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to