First time here? Check out the FAQ!
answered 2 years ago
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