Why does Sage not solve the equation? (The quadratic equation is just a
test.)
sage: x,y,a,b = var('x, y, a, b')
sage: solve([x - 2*y == a, x + 3*y == b],[x,y]);
sage: solve([x^2 + a*x + b == 0],x)
[x == -1/2*a - 1/2*sqrt(a^2 - 4*b), x == -1/2*a + 1/2*sqrt(a^2 - 4*b)]
sage: solve([x - 2*y - a == 0, x + 3*y -b == 0],[x,y]);
sage: solve([x - 2*y - a == 0, x + 3*y -b == 0],x,y);
sage:
Maxima delivers the solution:
2 b + 3 a a - b
(%o2) [[x = ---------, y = - -----]]
5 5
--
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
URL: http://www.sagemath.org
To unsubscribe, reply using "remove me" as the subject.