First time here? Check out the FAQ!
answered 2014-02-16 04:38:03 +0100
If you define your polynomial ring as follows, it does work:
sage: P.<y> = PolynomialRing(RR) sage: R.<x> = PolynomialRing(P) sage: a = x^2 + y sage: b = x - y^2 sage: a.resultant(b)