Definitions/Def_LanglandsTunnell_QuatH.lean
Determinant-one and quaternionic subgroups and their fixed fields
Throughout, L is a number field and e is a chosen group isomorphism (L \simeq_{\mathbb Q} L) \cong \mathrm{GL}_2(\mathbb{Z}/3). The abbreviation fixFld H, for a subgroup H of the automorphism group of L over \mathbb{Q}, is Mathlib's fixed-field construction FixedPoints.intermediateField, viewed as an intermediate field of \mathbb{Q} \subseteq L; fixFld_le_fixFld_of_le records that this construction is order-reversing in H.
Two subgroups are defined. First, detKer e is the kernel of the homomorphism obtained by composing e with the determinant \mathrm{GL}_2(\mathbb{Z}/3) \to (\mathbb{Z}/3)^\times; mem_detKer_iff restates membership as the condition that the underlying 2 \times 2 matrix of e\gamma have determinant 1, so detKer e is the preimage e^{-1}(\mathrm{SL}_2(\mathbb{Z}/3)), and it is registered as a normal subgroup. Second, quatH e is the intersection sylowH e ⊓ detKer e, where sylowH e consists of those \gamma for which the matrix of e\gamma is the entrywise reduction, along the ring homomorphism \mathbb{Z}[\sqrt{-2}] \to \mathbb{Z}/3 sending \sqrt{-2} \mapsto -1, of one of the sixteen explicitly listed matrices P16 over \mathbb{Z}[\sqrt{-2}]. The inclusions quatH e ≤ sylowH e and quatH e ≤ detKer e are recorded, together with the resulting inclusions of fixed fields L^{\mathrm{sylowH}\,e} \subseteq L^{\mathrm{quatH}\,e} and L^{\mathrm{detKer}\,e} \subseteq L^{\mathrm{quatH}\,e}.
The remaining declarations equip these inclusions with algebra structures, and with the compatibilities over \mathbb{Q} and over L, so that both fixed-field pairs form towers; the closing examples check that the induced algebra structures on the rings of integers, and their integrality, are available from these. No statement here asserts an order, index or degree; such facts belong to the octahedral case and are proved elsewhere.
Relation to Mathlib
fixFld is an abbreviation for Mathlib's FixedPoints.intermediateField; detKer is the kernel of a composite of Mathlib's determinant homomorphism on GL (Fin 2) (ZMod 3) with e. The subgroups sylowH and quatH, defined via the explicit lists of matrices over \mathbb{Z}[\sqrt{-2}], are the project's own.
Where it is used
These subgroups and fixed fields organise the octahedral situation used in the Langlands–Tunnell step: the 3-adic mod 3 representation attached to the Frey curve has projective image in \mathrm{GL}_2(\mathbb{F}_3), and the base-change argument is carried out along the tower formed by the fixed field of a 2-Sylow-type subgroup, the fixed field of the determinant-one subgroup, and the fixed field of their intersection. The algebra and scalar-tower instances provided here are what allow base change of automorphic forms to be formed across both pairs of fields and their rings of integers.
References
- R. P. Langlands, Base Change for GL(2), Annals of Mathematics Studies 96, Princeton University Press, 1980
- J. Tunnell, Artin's conjecture for representations of octahedral type, Bulletin of the American Mathematical Society (N.S.) 5 (1981), 173–175
- H. Darmon, F. Diamond and R. Taylor, Fermat's Last Theorem, in: Current Developments in Mathematics 1995, International Press, 1995, 1–154, §3.2
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 98 lines
- 16 declarations
- used in the statements of 24 theorems and imported by 24 proofs
- imports 1 definition modules
Source file: Definitions/Def_LanglandsTunnell_QuatH.lean
Imports
Declarations
- abbrev
LanglandsTunnell.fixFld - theorem
LanglandsTunnell.fixFld_le_fixFld_of_le - def
LanglandsTunnell.detKer - theorem
LanglandsTunnell.mem_detKer_iff - instance
LanglandsTunnell.detKer_normal - def
LanglandsTunnell.quatH - theorem
LanglandsTunnell.quatH_le_sylowH - theorem
LanglandsTunnell.quatH_le_detKer - theorem
LanglandsTunnell.fixFld_sylowH_le_fixFld_quatH - theorem
LanglandsTunnell.fixFld_detKer_le_fixFld_quatH - instance
LanglandsTunnell.algebra_fixFldSylowH_fixFldQuatH - instance
LanglandsTunnell.isScalarTower_rat_fixFldSylowH_fixFldQuatH - instance
LanglandsTunnell.isScalarTower_fixFldSylowH_fixFldQuatH_L - instance
LanglandsTunnell.algebra_fixFldDetKer_fixFldQuatH - instance
LanglandsTunnell.isScalarTower_rat_fixFldDetKer_fixFldQuatH - instance
LanglandsTunnell.isScalarTower_fixFldDetKer_fixFldQuatH_L
Source
import Definitions.Def_LanglandsTunnell_SylowH import Mathlib.FieldTheory.Galois.Basic ↗ import Mathlib.NumberTheory.NumberField.Basic ↗ set_option autoImplicit false namespace LanglandsTunnell open NumberField FLT.ExplicitLift LanglandsTunnell.Lift48 open scoped MatrixGroups variable {L : Type} [Field L] [NumberField L] abbrev fixFld (H : Subgroup (L ≃ₐ[ℚ] L)) : IntermediateField ℚ L := FixedPoints.intermediateField (↥H) theorem fixFld_le_fixFld_of_le {H H' : Subgroup (L ≃ₐ[ℚ] L)} (h : H' ≤ H) : fixFld H ≤ fixFld H' := by intro x hx rw [fixFld, FixedPoints.mem_intermediateField_iff] at hx ⊢ exact fun g => hx ⟨g.1, h g.2⟩ def detKer (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) : Subgroup (L ≃ₐ[ℚ] L) := (Matrix.GeneralLinearGroup.det.comp e.toMonoidHom).ker theorem mem_detKer_iff (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) (γ : L ≃ₐ[ℚ] L) : γ ∈ detKer e ↔ ((e γ : GL (Fin 2) (ZMod 3)) : Matrix (Fin 2) (Fin 2) (ZMod 3)).det = 1 := by rw [detKer, MonoidHom.mem_ker, MonoidHom.comp_apply, ← Units.val_eq_one] rfl instance detKer_normal (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) : (detKer e).Normal := by unfold detKer; infer_instance def quatH (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) : Subgroup (L ≃ₐ[ℚ] L) := sylowH e ⊓ detKer e theorem quatH_le_sylowH (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) : quatH e ≤ sylowH e := inf_le_left theorem quatH_le_detKer (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) : quatH e ≤ detKer e := inf_le_right theorem fixFld_sylowH_le_fixFld_quatH (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) : fixFld (sylowH e) ≤ fixFld (quatH e) := fixFld_le_fixFld_of_le (quatH_le_sylowH e) theorem fixFld_detKer_le_fixFld_quatH (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) : fixFld (detKer e) ≤ fixFld (quatH e) := fixFld_le_fixFld_of_le (quatH_le_detKer e) section TowerInstances variable (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) noncomputable instance algebra_fixFldSylowH_fixFldQuatH : Algebra ↥(fixFld (sylowH e)) ↥(fixFld (quatH e)) := (IntermediateField.inclusion (fixFld_sylowH_le_fixFld_quatH e)).toRingHom.toAlgebra instance isScalarTower_rat_fixFldSylowH_fixFldQuatH : IsScalarTower ℚ ↥(fixFld (sylowH e)) ↥(fixFld (quatH e)) := IsScalarTower.of_algebraMap_eq' (RingHom.ext_rat _ _) instance isScalarTower_fixFldSylowH_fixFldQuatH_L : IsScalarTower ↥(fixFld (sylowH e)) ↥(fixFld (quatH e)) L := IsScalarTower.of_algebraMap_eq' (by ext x exact (IntermediateField.coe_inclusion (fixFld_sylowH_le_fixFld_quatH e) x).symm) noncomputable instance algebra_fixFldDetKer_fixFldQuatH : Algebra ↥(fixFld (detKer e)) ↥(fixFld (quatH e)) := (IntermediateField.inclusion (fixFld_detKer_le_fixFld_quatH e)).toRingHom.toAlgebra instance isScalarTower_rat_fixFldDetKer_fixFldQuatH : IsScalarTower ℚ ↥(fixFld (detKer e)) ↥(fixFld (quatH e)) := IsScalarTower.of_algebraMap_eq' (RingHom.ext_rat _ _) instance isScalarTower_fixFldDetKer_fixFldQuatH_L : IsScalarTower ↥(fixFld (detKer e)) ↥(fixFld (quatH e)) L := IsScalarTower.of_algebraMap_eq' (by ext x exact (IntermediateField.coe_inclusion (fixFld_detKer_le_fixFld_quatH e) x).symm) end TowerInstances section SynthProbe variable (e : (L ≃ₐ[ℚ] L) ≃* GL (Fin 2) (ZMod 3)) noncomputable example : Algebra (𝓞 ↥(fixFld (sylowH e))) (𝓞 ↥(fixFld (quatH e))) := inferInstance noncomputable example : Algebra.IsIntegral (𝓞 ↥(fixFld (sylowH e))) (𝓞 ↥(fixFld (quatH e))) := inferInstance noncomputable example : Algebra (𝓞 ↥(fixFld (detKer e))) (𝓞 ↥(fixFld (quatH e))) := inferInstance noncomputable example : Algebra.IsIntegral (𝓞 ↥(fixFld (detKer e))) (𝓞 ↥(fixFld (quatH e))) := inferInstance end SynthProbe end LanglandsTunnell
Statements phrased using this module (24)
- Lift-valued cuspidal Hecke system for octahedral GL₂(𝔽₃)-extensions
LanglandsTunnell.exists_liftValued_isCusp_pair_of_detDictionaryRow_of_coversModCentre6,800 below · depth 11 - Octahedral Langlands–Tunnell over ℚ at cubic-resolvent grain
LanglandsTunnell.exists_agreesLiftTraceSeed_isCusp_pair_of_detDictionaryRow_of_coversModCentre5,218 below · depth 12 - Lift-valued Frobenius table from cubic base-change agreement
LanglandsTunnell.exists_liftValued_of_agreesLiftTraceSeed_isCusp_pair2,325 below · depth 12 - Quadratic base-change fibre over the cubic resolvent
LanglandsTunnell.agreesAwayFromFinite_or_twist_bcWeight_of_formalBaseChange_agree_sylowH898 below · depth 13 - Cubic base change to the Sylow fixed field of GL₂(𝔽₃)
LanglandsTunnell.exists_agreesFormalBaseChange_arithGenuineCuspRealizable_sylowH_of_quatH_of_unitary_resolvent2,556 below · depth 13 - Boundedness of aₚ from agreement with the lift-trace seed
LanglandsTunnell.exists_forall_norm_a_le_of_formalBaseChange_agrees_liftTraceSeed1 below · depth 13 - Quadratic descent to ℚ of a cusp-realizable Hecke eigensystem
LanglandsTunnell.exists_isArithBoundedGenuineCuspRealizable_pair_agrees_liftTraceSeed_quatH3,136 below · depth 13 - Cubic descent of the lift-trace seed to the determinant-kernel field
LanglandsTunnell.exists_isConstantOnFibers_b_formalBaseChange_arithBoundedGenuineCuspRealizable_detKer_of_quatH3,359 below · depth 13 - Ray class character realising the Q₈ seed table
LanglandsTunnell.exists_quadratic_rayClassChar_table_liftTraceSeed_quatH_of_detDictionaryRow96 below · depth 13 - Seed table over the cubic resolvent as a theta table
LanglandsTunnell.exists_quadratic_rayClassChar_table_liftTraceSeed_sylowH_of_detDictionaryRow93 below · depth 13 - Resolvent sign character and non-self-twist guard for GL₂(𝔽₃) towers
LanglandsTunnell.exists_resolventSign_not_agreesAwayFromFinite_twist_sylowH_of_liftTraceSeed_quatH27 below · depth 13 - Frobenius read-off at an unramified prime, up to the cubic partner
LanglandsTunnell.face_liftValuedUpToPartner_of_b_agreesAt_liftTraceSeed_detKer_sylowH0 below · depth 13 - The fixed field of `sylowH` is not Galois over ℚ
LanglandsTunnell.not_isGalois_fixFld_sylowH0 below · depth 13 - Sign character of a GL₂(𝔽₃)-tower over ℚ
LanglandsTunnell.exists_resolventSignChar_sylowH1 below · depth 14 - Induced-character table for the lift-trace seed over the cubic field
LanglandsTunnell.liftTraceSeed_sylowH_table_eq_artinValue1 below · depth 14 - Base change to the `sylowH` fixed field is not Eisenstein
LanglandsTunnell.not_agreesAwayFromFinite_formalBaseChange_sylowH_eisensteinTableOf_of_quatH220 below · depth 14 - No self-twist by the determinant sign character
LanglandsTunnell.not_agreesAwayFromFinite_twist_resolventSign_of_liftTraceSeed_quatH24 below · depth 14 - Base change of an Eisenstein Hecke table is Eisenstein
AutomorphicForm.exists_agreesAwayFromFinite_formalBaseChange_eisensteinTableOf7 below · depth 15 - Twisting a realizable eigensystem by a power of the norm
AutomorphicForm.isArithGenuineCuspRealizable_twist_rpow_absNorm10 below · depth 15 - A genuine cusp realization excludes Eisenstein Hecke tables
AutomorphicForm.not_agreesAwayFromFinite_eisensteinTableOf_of_isArithGenuineCuspRealizable_of_coversModCentre211 below · depth 15 - Lift-trace seed vanishes above primes with e(σ) of order eight
LanglandsTunnell.exists_finset_liftTraceSeed_quatH_a_eq_zero_of_orderOf_eq_eight2 below · depth 15 - Unramified prime with order-eight Frobenius in a GL₂(𝔽₃)-tower
LanglandsTunnell.exists_inertia_eq_bot_isArithFrobAt_orderOf_eq_eight17 below · depth 15 - Quaternion-layer formal base change at Frobenius of order eight
LanglandsTunnell.formalBaseChange_quatH_a_eq_of_orderOf_eq_eight2 below · depth 15 - First-moment bound sumₚ |aₚ| Np^{-σ}<∞ for σ>1
AutomorphicForm.summable_norm_a_mul_rpow_absNorm_of_isArithGenuineCuspRealizable715 below · depth 19