We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
R.<x> = QQ[] f = 144*x^6 - 240*x^5 + 148*x^4 + 16*x^3 - 16*x^2 - 4*x + 1 H = HyperellipticCurve(f) J = Jacobian(H) P = J(H(0,1))-J(H(0,-1)) (5*P).is_zero()
seems to suggest that P is a torsion point with order 5. However, the same code in Magma
R<x> := PolynomialRing(Rationals()); f := 144*x^6 - 240*x^5 + 148*x^4 + 16*x^3 - 16*x^2 - 4*x + 1; H := HyperellipticCurve(f); J := Jacobian(H); P := H![0,1] - H![0,-1]; IsZero(5*P);
suggests that P does not have order 5, and in fact Magma says that J has trivial torsion subgroup.
I have confirmed that P does not have order 5, and I have reason to believe that P is not a torsion point at all.
There is some brief discussion about this issue at https://groups.google.com/g/sage-support/c/j1Y9yuu-VuE
Component: algebraic geometry
Issue created by migration from https://trac.sagemath.org/ticket/32024
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code:
seems to suggest that P is a torsion point with order 5. However, the same code in Magma
suggests that P does not have order 5, and in fact Magma says that J has trivial torsion subgroup.
I have confirmed that P does not have order 5, and I have reason to believe that P is not a torsion point at all.
There is some brief discussion about this issue at https://groups.google.com/g/sage-support/c/j1Y9yuu-VuE
Component: algebraic geometry
Issue created by migration from https://trac.sagemath.org/ticket/32024
The text was updated successfully, but these errors were encountered: