Definitions/Def_FreyPackage_RouteAReversePinSeam.lean
Two residual predicates pinning to the canonical Frey model
Two Prop-valued predicates on a Frey package P=(a,b,c,p) are introduced; both concern transporting trace-of-Frobenius data from an arbitrary integral Weierstrass model of the Frey curve to the canonical one, freyCurveInt P.
FreyCurveApOfModelThreeAgreement P says: for every W over \mathbb{Z} that is an integral model of P.freyCurve (i.e. some variable change over \mathbb{Q} carries the Frey curve to W base-changed to \mathbb{Q}) and satisfies the project's good-prime condition at 3, namely 3 \nmid \Delta_W, one has W.apOfModel 3 = 0. Here apOfModel W q is \#\mathbb{Z}/q + 1 minus the number of points of the affine Weierstrass curve obtained by reducing the coefficients of W modulo q (the point at infinity included). So this is a model-independence statement for a_3, pinned to the value 0.
RouteAReversePinBadOnlySeam P says: whenever N\in\mathbb{N}, f is a cusp form of weight 2 for \Gamma_0(N), W is an integral Weierstrass model over \mathbb{Z} and \mathfrak{m} is an ideal of \overline{\mathbb{Z}} = integralClosure ℤ ℂ such that P.IsCongruentWitness N f W 𝔪 holds — f a normalized eigenform in the project's sense (recursions on its q-expansion coefficients), W an integral model of the Frey curve, \mathfrak{m} maximal containing p, and a_\ell(f) congruent modulo \mathfrak{m} to W.apOfModel ℓ for all primes \ell \nmid N, \ell \neq p good for W — then the same congruence holds with W replaced by freyCurveInt P at every prime \ell \nmid N, \ell \neq p that is good for freyCurveInt P but bad for W (i.e. \ell \mid \Delta_W). Precisely: there is a \in \overline{\mathbb{Z}} with a = a_\ell(f) in \mathbb{C} and a - a_\ell(\mathrm{freyCurveInt}\,P) \in \mathfrak{m}. The predicate is vacuous when W itself is the canonical model.
Relation to Mathlib
Weierstrass curves, their discriminant, variable changes, CuspForm, Gamma0 and the q-expansion are Mathlib's; the notions used here to package reduction data — good primes (p \nmid \Delta), apOfModel, integral models, normalized eigenforms via coefficient recursions, and congruence witnesses in \overline{\mathbb{Z}} — are the project's own, Mathlib having no such notions.
Where it is used
These two predicates isolate the part of the mod-p congruence bookkeeping that is not covered by intrinsic model-independence of a_\ell at good primes: the prime 3, and the primes that are bad for an auxiliary integral model but good for the canonical Frey model. Downstream modules use them as hypotheses to move an eigenform congruence witness onto freyCurveInt P, the form in which the congruence is fed into the level-lowering step for the Frey curve attached to a putative solution of the Fermat equation.
References
- H. Darmon, F. Diamond and R. Taylor, Fermat's Last Theorem, in: Current Developments in Mathematics 1995, International Press, 1995, 1–154
- K. A. Ribet, On modular representations of \mathrm{Gal}(\overline{\mathbb{Q}}/\mathbb{Q}) arising from modular forms, Inventiones Mathematicae 100 (1990), 431–476
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 31 lines
- 2 declarations
- used in the statements of 5 theorems and imported by 6 proofs
- imports 6 definition modules
Source file: Definitions/Def_FreyPackage_RouteAReversePinSeam.lean
Imports
Imported by
- no other definition module
Declarations
Source
import Definitions.Def_FLTPrelim_FreyPackage import Definitions.Def_FLTPrelim_GaloisRep import Definitions.Def_FLTPrelim_Modularity import Definitions.Def_FLTPrelim_ModularRep import Definitions.Def_FreyPackage_LevelRaising import Definitions.Def_FLTPrelim_Ramification set_option autoImplicit false set_option maxHeartbeats 600000 open WeierstrassCurve WeierstrassCurve.Affine.Point CuspForm open scoped CongruenceSubgroup namespace FreyPackage def FreyCurveApOfModelThreeAgreement (P : FreyPackage) : Prop := ∀ W : WeierstrassCurve ℤ, W.IsIntegralModelOf P.freyCurve → W.IsGoodPrimeFor 3 → W.apOfModel 3 = 0 def RouteAReversePinBadOnlySeam (P : FreyPackage) : Prop := ∀ (N : ℕ) (f : CuspForm (CongruenceSubgroup.Gamma0 N) 2) (W : WeierstrassCurve ℤ) (𝔪 : Ideal (integralClosure ℤ ℂ)), P.IsCongruentWitness N f W 𝔪 → ∀ ℓ : ℕ, ℓ.Prime → (freyCurveInt P).IsGoodPrimeFor ℓ → ¬ ℓ ∣ N → ℓ ≠ P.p → ¬ W.IsGoodPrimeFor ℓ → ∃ a : integralClosure ℤ ℂ, (a : ℂ) = ModularFormClass.qCoeff f ℓ ∧ a - (((freyCurveInt P).apOfModel ℓ : ℤ) : integralClosure ℤ ℂ) ∈ 𝔪 end FreyPackage
Statements phrased using this module (5)
- Transfer of the Frey congruence to the canonical integral model
FreyPackage.canonicalModelCongruence_of_eigenformResidualAttachment_of_congruence_outside78 below · depth 7 - Every good-at-3 integral model of the Frey curve has a₃=0
FreyPackage.freyCurveApOfModelThreeAgreement17 below · depth 9 - Reverse-pin congruence at primes bad only for the witness model
FreyPackage.routeAReversePinBadOnlySeam1,372 below · depth 9 - Residual congruence at the canonical Frey model at W-bad primes
FreyPackage.routeAReversePinBadOnlySeam_of_eigenformResidualAttachment79 below · depth 10 - Congruence at all good primes of the canonical Frey model
FreyPackage.canonicalModelCongruence_of_eigenformResidualAttachment78 below · depth 11