| 1 | initial version |
.elimination_ideal() is computed by Singular, which has a restriction for the field characteristic to be below $2^{31}$.
Check this out:
P.<x,y> = GF(previous_prime(2^31))[]
print(P.parent())
P.<x,y> = GF(next_prime(2^31))[]
print(P.parent())
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.