Re: [sage-support] resultant for aite polynomials

2013-12-10 Thread John Cremona
sage: R.x,y=QQ[] sage: f = R.random_element() sage: g = R.random_element() sage: f.resultant? sage: f.resultant(g,x) 49/2*y^3 + 131/6*y^2 + 5/3*y + 1/3 sage: f.resultant(g,y) -343*x^3 - 2285/36*x^2 - 253/18*x - 71/144 On 7 December 2013 06:34, 1982santu rsantum...@gmail.com wrote: How one can

[sage-support] resultant for aite polynomials

2013-12-07 Thread 1982santu
How one can find resultant of two bivariate polynomials in sage? -- You received this message because you are subscribed to the Google Groups sage-support group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr...@googlegroups.com. To

[sage-support] Resultant of two polynomials

2011-01-26 Thread Santanu Sarkar
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? -- 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

[sage-support] resultant

2010-01-31 Thread Michael Beeson
The following sage session shows a call to compute the resultant of two polynomials that fails, and another call that seems quite similar in syntax and semantics that succeeds just fine. What's going on here? It seems to not realize that f is a polynomial, since it says it's a

[sage-support] resultant

2010-01-31 Thread Michael Beeson
another failed attempt to compute a resultant, that doesn't involve any quotient fields: sage: R.z,p,e,d,f,g,h,r,l,m=QQ[] sage: F = i*m*z^14 + (d+g)*z^13 + i*(f-p)*z^12 + e*z^11 + i*f*z^10 + (e-g)*z^9 + i*(m+p)*z^8 + 2*d*z^7 - i*(m+p)*z^6 + (e-g)*z^5 -i*f*z^4 + e*z^3 - i*(f-p)*z^2 + (d+g)*z - i*m

Re: [sage-support] resultant

2010-01-31 Thread William Stein
2010/1/31 Michael Beeson profbee...@gmail.com: another failed attempt to compute a resultant, that doesn't involve any quotient fields: sage: R.z,p,e,d,f,g,h,r,l,m=QQ[] sage: F = i*m*z^14 + (d+g)*z^13 + i*(f-p)*z^12 + e*z^11 + i*f*z^10 + (e-g)*z^9 + i*(m+p)*z^8 + 2*d*z^7 - i*(m+p)*z^6 +