Ask Your Question
1

Why does elimination_ideal not work here?

asked 2022-10-22 15:50:06 +0200

Siggi gravatar image

updated 2022-10-23 09:33:39 +0200

FrédéricC gravatar image
from sage.all import *
p = 1125899906842679
R = PolynomialRing(GF(p), 'x,y')
R.inject_variables()
I = Ideal(3*x**4 + 740736*x**2 + 4854540*x + 1125884665458743, -x**3 + y**2 + 1125899906719223*x + 1125899906438134)
J = I.elimination_ideal(y)

Here, elimination_ideal leads to an error. I have no clue why. For other examples, like other finite fields, it works. Has someone an idea, why?

edit retag flag offensive close merge delete

Comments

For other examples, like other finite fields, it works.

Can you give such an example ?

Emmanuel Charpentier gravatar imageEmmanuel Charpentier ( 2022-10-23 00:45:08 +0200 )edit

1 Answer

Sort by » oldest newest most voted
1

answered 2022-10-24 16:07:50 +0200

Max Alekseyev gravatar image

.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())
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2022-10-22 15:50:06 +0200

Seen: 118 times

Last updated: Oct 24 '22