FractionFieldElement works incorrectly over large fields
The code below returns a*b/a instead of b if characteristic of field is large. How can I bypass this limitation?
A=PolynomialRing(GF(2^31-1),['a','b'])
x, y = A.gens()[0], A.gens()[1]
print(x*y/x)
Well, maybe because
That's my suspition as well. Is there I can do anything about this issue? I'd like to be able to handle 63 bit numbers.