I apologize for my terrible formatting (I am new to this site), but I am having an issue with the reduce() method for FractionFieldElement. In a Jupyter notebook I executed the following code
S = FractionField(QQ['t'])
S.inject_variables()
R = PolynomialRing(FractionField(QQ['t']),'x',3)
R.inject_variables()
(((x0^2-x1^2)/(x0-x1)).reduce())
but this returned an object with NoneType, rather than a fraction field element or ring element. What am I doing wrong?