Properties

Label 2873.a.48841.1
Conductor $2873$
Discriminant $-48841$
Mordell-Weil group \(\Z\)
Sato-Tate group $\mathrm{USp}(4)$
\(\End(J_{\overline{\Q}}) \otimes \R\) \(\R\)
\(\End(J_{\overline{\Q}}) \otimes \Q\) \(\Q\)
\(\End(J) \otimes \Q\) \(\Q\)
\(\overline{\Q}\)-simple yes
\(\mathrm{GL}_2\)-type no

Related objects

Downloads

Learn more

Show commands: Magma / SageMath

Minimal equation

Minimal equation

Simplified equation

$y^2 + (x^3 + x + 1)y = 2x^4 + 2x^2 + x$ (homogenize, simplify)
$y^2 + (x^3 + xz^2 + z^3)y = 2x^4z^2 + 2x^2z^4 + xz^5$ (dehomogenize, simplify)
$y^2 = x^6 + 10x^4 + 2x^3 + 9x^2 + 6x + 1$ (homogenize, minimize)

sage: R.<x> = PolynomialRing(QQ); C = HyperellipticCurve(R([0, 1, 2, 0, 2]), R([1, 1, 0, 1]));
 
magma: R<x> := PolynomialRing(Rationals()); C := HyperellipticCurve(R![0, 1, 2, 0, 2], R![1, 1, 0, 1]);
 
sage: X = HyperellipticCurve(R([1, 6, 9, 2, 10, 0, 1]))
 
magma: X,pi:= SimplifiedModel(C);
 

Invariants

Conductor: \( N \)  \(=\)  \(2873\) \(=\) \( 13^{2} \cdot 17 \)
magma: Conductor(LSeries(C)); Factorization($1);
 
Discriminant: \( \Delta \)  \(=\)  \(-48841\) \(=\) \( - 13^{2} \cdot 17^{2} \)
magma: Discriminant(C); Factorization(Integers()!$1);
 

Igusa-Clebsch invariants

Igusa invariants

G2 invariants

\( I_2 \)  \(=\) \(828\) \(=\)  \( 2^{2} \cdot 3^{2} \cdot 23 \)
\( I_4 \)  \(=\) \(36777\) \(=\)  \( 3 \cdot 13 \cdot 23 \cdot 41 \)
\( I_6 \)  \(=\) \(8302203\) \(=\)  \( 3^{3} \cdot 7 \cdot 13 \cdot 31 \cdot 109 \)
\( I_{10} \)  \(=\) \(6251648\) \(=\)  \( 2^{7} \cdot 13^{2} \cdot 17^{2} \)
\( J_2 \)  \(=\) \(207\) \(=\)  \( 3^{2} \cdot 23 \)
\( J_4 \)  \(=\) \(253\) \(=\)  \( 11 \cdot 23 \)
\( J_6 \)  \(=\) \(-6665\) \(=\)  \( - 5 \cdot 31 \cdot 43 \)
\( J_8 \)  \(=\) \(-360916\) \(=\)  \( - 2^{2} \cdot 23 \cdot 3923 \)
\( J_{10} \)  \(=\) \(48841\) \(=\)  \( 13^{2} \cdot 17^{2} \)
\( g_1 \)  \(=\) \(380059617807/48841\)
\( g_2 \)  \(=\) \(2244044979/48841\)
\( g_3 \)  \(=\) \(-285588585/48841\)

sage: C.igusa_clebsch_invariants(); [factor(a) for a in _]
 
magma: IgusaClebschInvariants(C); IgusaInvariants(C); G2Invariants(C);
 

Automorphism group

\(\mathrm{Aut}(X)\)\(\simeq\) $C_2$
magma: AutomorphismGroup(C); IdentifyGroup($1);
 
\(\mathrm{Aut}(X_{\overline{\Q}})\)\(\simeq\) $C_2$
magma: AutomorphismGroup(ChangeRing(C,AlgebraicClosure(Rationals()))); IdentifyGroup($1);
 

Rational points

All points
\((1 : 0 : 0)\) \((1 : -1 : 0)\) \((0 : 0 : 1)\) \((0 : -1 : 1)\) \((2 : 3 : 1)\) \((2 : -14 : 1)\)
\((-1 : -15 : 4)\) \((-1 : -32 : 4)\)
All points
\((1 : 0 : 0)\) \((1 : -1 : 0)\) \((0 : 0 : 1)\) \((0 : -1 : 1)\) \((2 : 3 : 1)\) \((2 : -14 : 1)\)
\((-1 : -15 : 4)\) \((-1 : -32 : 4)\)
All points
\((1 : -1 : 0)\) \((1 : 1 : 0)\) \((0 : -1 : 1)\) \((0 : 1 : 1)\) \((2 : -17 : 1)\) \((2 : 17 : 1)\)
\((-1 : -17 : 4)\) \((-1 : 17 : 4)\)

magma: [C![-1,-32,4],C![-1,-15,4],C![0,-1,1],C![0,0,1],C![1,-1,0],C![1,0,0],C![2,-14,1],C![2,3,1]]; // minimal model
 
magma: [C![-1,-17,4],C![-1,17,4],C![0,-1,1],C![0,1,1],C![1,-1,0],C![1,1,0],C![2,-17,1],C![2,17,1]]; // simplified model
 

Number of rational Weierstrass points: \(0\)

magma: #Roots(HyperellipticPolynomials(SimplifiedModel(C)));
 

This curve is locally solvable everywhere.

magma: f,h:=HyperellipticPolynomials(C); g:=4*f+h^2; HasPointsEverywhereLocally(g,2) and (#Roots(ChangeRing(g,RealField())) gt 0 or LeadingCoefficient(g) gt 0);
 

Mordell-Weil group of the Jacobian

Group structure: \(\Z\)

magma: MordellWeilGroupGenus2(Jacobian(C));
 

Generator $D_0$ Height Order
\(D_0 - (1 : -1 : 0) - (1 : 0 : 0)\) \(2x^2 + 4xz + z^2\) \(=\) \(0,\) \(2y\) \(=\) \(3xz^2\) \(0.011772\) \(\infty\)
Generator $D_0$ Height Order
\(D_0 - (1 : -1 : 0) - (1 : 0 : 0)\) \(2x^2 + 4xz + z^2\) \(=\) \(0,\) \(2y\) \(=\) \(3xz^2\) \(0.011772\) \(\infty\)
Generator $D_0$ Height Order
\(D_0 - (1 : -1 : 0) - (1 : 1 : 0)\) \(2x^2 + 4xz + z^2\) \(=\) \(0,\) \(2y\) \(=\) \(x^3 + 7xz^2 + z^3\) \(0.011772\) \(\infty\)

2-torsion field: 6.0.10816.1

BSD invariants

Hasse-Weil conjecture: unverified
Analytic rank: \(1\)
Mordell-Weil rank: \(1\)
2-Selmer rank:\(1\)
Regulator: \( 0.011772 \)
Real period: \( 16.83634 \)
Tamagawa product: \( 2 \)
Torsion order:\( 1 \)
Leading coefficient: \( 0.396427 \)
Analytic order of Ш: \( 1 \)   (rounded)
Order of Ш:square

Local invariants

Prime ord(\(N\)) ord(\(\Delta\)) Tamagawa L-factor Cluster picture
\(13\) \(2\) \(2\) \(1\) \(1 - T + 13 T^{2}\)
\(17\) \(1\) \(2\) \(2\) \(( 1 - T )( 1 + 3 T + 17 T^{2} )\)

Galois representations

The mod-$\ell$ Galois representation has maximal image \(\GSp(4,\F_\ell)\) for all primes \( \ell \) except those listed.

Prime \(\ell\) mod-\(\ell\) image Is torsion prime?
\(2\) 2.40.3 no
\(3\) 3.40.1 no

Sato-Tate group

\(\mathrm{ST}\)\(\simeq\) $\mathrm{USp}(4)$
\(\mathrm{ST}^0\)\(\simeq\) \(\mathrm{USp}(4)\)

Decomposition of the Jacobian

Simple over \(\overline{\Q}\)

magma: HeuristicDecompositionFactors(C);
 

Endomorphisms of the Jacobian

Not of \(\GL_2\)-type over \(\Q\)

Endomorphism ring over \(\Q\):

\(\End (J_{})\)\(\simeq\)\(\Z\)
\(\End (J_{}) \otimes \Q \)\(\simeq\)\(\Q\)
\(\End (J_{}) \otimes \R\)\(\simeq\) \(\R\)

All \(\overline{\Q}\)-endomorphisms of the Jacobian are defined over \(\Q\).

magma: //Please install CHIMP (https://github.com/edgarcosta/CHIMP) if you want to run this code
 

magma: HeuristicIsGL2(C); HeuristicEndomorphismDescription(C); HeuristicEndomorphismFieldOfDefinition(C);
 

magma: HeuristicIsGL2(C : Geometric := true); HeuristicEndomorphismDescription(C : Geometric := true); HeuristicEndomorphismLatticeDescription(C);