y2=x3−1316172x−563732624
|
(homogenize, simplify) |
y2z=x3−1316172xz2−563732624z3
|
(dehomogenize, simplify) |
y2=x3−1316172x−563732624
|
(homogenize, minimize) |
sage:E = EllipticCurve([0, 0, 0, -1316172, -563732624])
gp:E = ellinit([0, 0, 0, -1316172, -563732624])
magma:E := EllipticCurve([0, 0, 0, -1316172, -563732624]);
oscar:E = elliptic_curve([0, 0, 0, -1316172, -563732624])
sage:E.short_weierstrass_model()
magma:WeierstrassModel(E);
oscar:short_weierstrass_model(E)
Z⊕Z/2Z
magma:MordellWeilGroup(E);
P | h^(P) | Order |
(489331246/119025,10348586131456/41063625) | 17.384545368234595788393981055 | ∞ |
(−754,0) | 0 | 2 |
(−754,0)
sage:E.integral_points()
magma:IntegralPoints(E);
Invariants
Conductor: |
N |
= |
486720 | = | 26⋅32⋅5⋅132 |
sage:E.conductor().factor()
gp:ellglobalred(E)[1]
magma:Conductor(E);
oscar:conductor(E)
|
Discriminant: |
Δ |
= |
8633828403566346240 | = | 222⋅38⋅5⋅137 |
sage:E.discriminant().factor()
gp:E.disc
magma:Discriminant(E);
oscar:discriminant(E)
|
j-invariant: |
j |
= |
9360273359449 | = | 2−4⋅3−2⋅5−1⋅113⋅13−1⋅593 |
sage:E.j_invariant().factor()
gp:E.j
magma:jInvariant(E);
oscar:j_invariant(E)
|
Endomorphism ring: |
End(E) | = | Z |
Geometric endomorphism ring: |
End(EQ) |
= |
Z
(no potential complex multiplication)
|
sage:E.has_cm()
magma:HasComplexMultiplication(E);
|
Sato-Tate group: |
ST(E) | = | SU(2) |
Faltings height: |
hFaltings | ≈ | 2.4053869561935509224128476349 |
gp:ellheight(E)
magma:FaltingsHeight(E);
oscar:faltings_height(E)
|
Stable Faltings height: |
hstable | ≈ | −0.46611463771119025543736688653 |
magma:StableFaltingsHeight(E);
oscar:stable_faltings_height(E)
|
abc quality: |
Q | ≈ | 0.8780552029900824 |
|
Szpiro ratio: |
σm | ≈ | 4.114737621092219 |
|
Analytic rank: |
ran | = | 1
|
sage:E.analytic_rank()
gp:ellanalyticrank(E)
magma:AnalyticRank(E);
|
Mordell-Weil rank: |
r | = | 1
|
sage:E.rank()
gp:[lower,upper] = ellrank(E)
magma:Rank(E);
|
Regulator: |
Reg(E/Q) | ≈ | 17.384545368234595788393981055 |
sage:E.regulator()
gp:G = E.gen \\ if available
matdet(ellheightmatrix(E,G))
magma:Regulator(E);
|
Real period: |
Ω | ≈ | 0.14124842628539235812491189042 |
sage:E.period_lattice().omega()
gp:if(E.disc>0,2,1)*E.omega[1]
magma:(Discriminant(E) gt 0 select 2 else 1) * RealPeriod(E);
|
Tamagawa product: |
∏pcp | = | 16
= 22⋅2⋅1⋅2
|
sage:E.tamagawa_numbers()
gp:gr=ellglobalred(E); [[gr[4][i,1],gr[5][i][4]] | i<-[1..#gr[4][,1]]]
magma:TamagawaNumbers(E);
oscar:tamagawa_numbers(E)
|
Torsion order: |
#E(Q)tor | = | 2 |
sage:E.torsion_order()
gp:elltors(E)[1]
magma:Order(TorsionSubgroup(E));
oscar:prod(torsion_structure(E)[1])
|
Special value: |
L′(E,1) | ≈ | 9.8221586998005738057074596290 |
sage:r = E.rank();
E.lseries().dokchitser().derivative(1,r)/r.factorial()
gp:[r,L1r] = ellanalyticrank(E); L1r/r!
magma:Lr1 where r,Lr1 := AnalyticRank(E: Precision:=12);
|
Analytic order of Ш: |
Шan |
≈ |
1
(rounded)
|
sage:E.sha().an_numerical()
magma:MordellWeilShaInformation(E);
|
9.822158700≈L′(E,1)=#E(Q)tor2#Ш(E/Q)⋅ΩE⋅Reg(E/Q)⋅∏pcp≈221⋅0.141248⋅17.384545⋅16≈9.822158700
sage:# self-contained SageMath code snippet for the BSD formula (checks rank, computes analytic sha)
E = EllipticCurve([0, 0, 0, -1316172, -563732624]); r = E.rank(); ar = E.analytic_rank(); assert r == ar;
Lr1 = E.lseries().dokchitser().derivative(1,r)/r.factorial(); sha = E.sha().an_numerical();
omega = E.period_lattice().omega(); reg = E.regulator(); tam = E.tamagawa_product(); tor = E.torsion_order();
assert r == ar; print("analytic sha: " + str(RR(Lr1) * tor^2 / (omega * reg * tam)))
magma:/* self-contained Magma code snippet for the BSD formula (checks rank, computes analytic sha) */
E := EllipticCurve([0, 0, 0, -1316172, -563732624]); r := Rank(E); ar,Lr1 := AnalyticRank(E: Precision := 12); assert r eq ar;
sha := MordellWeilShaInformation(E); omega := RealPeriod(E) * (Discriminant(E) gt 0 select 2 else 1);
reg := Regulator(E); tam := &*TamagawaNumbers(E); tor := #TorsionSubgroup(E);
assert r eq ar; print "analytic sha:", Lr1 * tor^2 / (omega * reg * tam);
Modular form
486720.2.a.mw
q+q5+6q17+O(q20)
sage:E.q_eigenform(20)
gp:\\ actual modular form, use for small N
[mf,F] = mffromell(E)
Ser(mfcoefs(mf,20),q)
\\ or just the series
Ser(ellan(E,20),q)*q
magma:ModularForm(E);
For more coefficients, see the Downloads section to the right.
*
The optimal curve in
each isogeny class has not been determined in all cases for
conductors over 400000.
The Manin constant is correct provided that this curve is optimal.
This elliptic curve is not semistable.
There
are 4 primes p
of bad reduction:
sage:E.local_data()
gp:ellglobalred(E)[5]
magma:[LocalInformation(E,p) : p in BadPrimes(E)];
oscar:[(p,tamagawa_number(E,p), kodaira_symbol(E,p), reduction_type(E,p)) for p in bad_primes(E)]
The ℓ-adic Galois representation has maximal image
for all primes ℓ except those listed in the table below.
sage:rho = E.galois_representation(); [rho.image_type(p) for p in rho.non_surjective()]
magma:[GaloisRepresentation(E,p): p in PrimesUpTo(20)];
sage:gens = [[1, 0, 8, 1], [736, 3, 525, 1042], [1, 8, 0, 1], [1, 4, 4, 17], [317, 1362, 1230, 1493], [356, 519, 1137, 1034], [1553, 8, 1552, 9], [7, 6, 1554, 1555], [73, 588, 1110, 847], [1039, 0, 0, 1559]]
GL(2,Integers(1560)).subgroup(gens)
magma:Gens := [[1, 0, 8, 1], [736, 3, 525, 1042], [1, 8, 0, 1], [1, 4, 4, 17], [317, 1362, 1230, 1493], [356, 519, 1137, 1034], [1553, 8, 1552, 9], [7, 6, 1554, 1555], [73, 588, 1110, 847], [1039, 0, 0, 1559]];
sub<GL(2,Integers(1560))|Gens>;
The image H:=ρE(Gal(Q/Q)) of the adelic Galois representation has
level 1560=23⋅3⋅5⋅13, index 48, genus 0, and generators
(1801),(73652531042),(1081),(14417),(317123013621493),(35611375191034),(1553155289),(7155461555),(731110588847),(1039001559).
The torsion field K:=Q(E[1560]) is a degree-19322634240 Galois extension of Q with Gal(K/Q) isomorphic to the projection of H to GL2(Z/1560Z).
The table below list all primes ℓ for which the Serre invariants associated to the mod-ℓ Galois representation are exceptional.
ℓ |
Reduction type |
Serre weight |
Serre conductor |
2 |
additive |
2 |
7605=32⋅5⋅132 |
3 |
additive |
8 |
54080=26⋅5⋅132 |
5 |
split multiplicative |
6 |
97344=26⋅32⋅132 |
13 |
additive |
98 |
2880=26⋅32⋅5 |
gp:ellisomat(E)
This curve has non-trivial cyclic isogenies of degree d for d=
2 and 4.
Its isogeny class 486720mw
consists of 4 curves linked by isogenies of
degrees dividing 4.
The minimal quadratic twist of this elliptic curve is
390a1, its twist by −312.
No Iwasawa invariant data is available for this curve.
p-adic regulators
p-adic regulators are not yet computed for curves that are not Γ0-optimal.