Hi Harald,

On Jan 28, 11:56 am, Harald Schilly <harald.schi...@gmail.com> wrote:
> Just because I tried and failed, could this also be made possible for
> polynomials in more than 1 variable?

I don't know. Would be nice, though.

> i.e. is there something that can
> do this?
>
> sage: f(x,y) = ZZ[x,y](x+y+1)

Wait, this is not a polynomial. If you want a polynomial, you may do
  sage: f = ZZ[x,y]('x+y+1')

But for solving it, it seems to me that one has to transform it
(implicitly) into a symbolic expression:
  sage: solve([f],[var('x'),var('y')])
  [[x == -r2 - 1, y == r2]]

Cheers,
Simon

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

Reply via email to