2008/12/23 bsdz <blai...@googlemail.com>:
>
> Hi,
>
> Is it possible to convert a SymbolicEquation into a MaximaElement
> easily? The opposite to: -
>
> maxima('x^2 + y^2 = 0').sage()
>
> Something like this: -
>
> x, y = var('x y')
> b = x^2 + y^2 == 0
> b.maxima()
>

Is this what you need?

sage: eqn = maxima("x^2 + y^2 = 0")
sage: eqn.lhs()
y^2+x^2
sage: eqn.rhs()
0

eqn.<tab> offers 2160 possible ways to go...!

John Cremona

> I would like to do some manipulations on an equation by breaking it
> down into terms and parts.
>
> Thanks
> Blair
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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