On Nov 3, 12:16 pm, "Rob H." <[email protected]> wrote: > Here's another simple example of basic simplifications that aren't > processed: > > P.<x>=SR[] > F=P.fraction_field() > print F(x/x) > print simplify(F(x/x)) > > Output: > x/x > x/x > > Does anyone have any suggestions on how to fix/circumvent these > problems?
It's not clear to me that simplify() works on anything other than SR itself, and P is not SR: sage: type(P) <class 'sage.rings.polynomial.polynomial_ring.PolynomialRing_field'> You might be able to take the coefficient and simplify that (?). - kcrisman -- 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
