Thank you. On 26 January 2011 18:20, John Cremona <[email protected]> wrote: > > > On Jan 26, 8:09 am, Santanu Sarkar <[email protected]> > wrote: >> I have two polynomials F(x,y,z) and G(x,y,z) over integer. From F, G I want >> to eliminate z by resultant method. How can I do this? > > From the documentation: > > EXAMPLES: > > sage: P.<x,y> = PolynomialRing(QQ,2) > sage: a = x+y > sage: b = x^3-y^3 > sage: c = a.resultant(b); c > -2*y^3 > sage: d = a.resultant(b,y); d > 2*x^3 > > -- > 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 >
-- 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
