Hello,

Suppose I have several equations,

f(a,b,c,d,e) == 0
g(a,b,c,d,e) == 0
h(a,b,c,d,e) == 0

Suppose I want to solve for a, but not have d and e in the solutions.
How would I do that?

In Mathematica I would use,

Solve[ { f(a,b,c,d,e)==0, g(a,b,c,d,e)==0, h(a,b,c,d,e)==0 }, a,
{d,e} ]

How can I do this in Sage?

I guess I have to use the 'solve' function, but I can't figure out
how.

Thanks

-- 
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to