How to compute such resultant?
I need to compute such resultant:
Where
- polynomials over Z.
How can i do this in sage?
Setup:
R.<x> = PolynomialRing(ZZ)
A1 = R.random_element(degree=2)
C0 = R.random_element(degree=2)
C1 = R.random_element(degree=2)
S.<y> = PolynomialRing(R)
Execution:
sage: A1(y).resultant(C0 + y*C1)
x^4 - 6*x^3 + 5*x^2 - 4*x + 2
Thanks, I tried to set a polynomials over another fields, especially C1, and face with data type problem, would it be correct to use change_ring to bring everything into the same form?
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2 years ago
Seen: 521 times
Last updated: Sep 26 '22
Problems with computing discriminants and resultants.
How does one find solutions to a polynomial over a finite field?
given a list of coefficients how can I get a polynomial
Multivariate Polynomials over Rational Function Fields
How do I Pass a tuple as an argument for a multivariate polynomial?
Is there an example of how i could write a polynomial as a product of linear factors
multi-symmetric functions and multi-partitions