Definitions/Def_GaloisRep_ConditionLifts.lean
Condition subfunctor of the framed lift functor
Fix a local ring \mathcal{O} and a family of predicates \mathcal{D} which, for every local ring A carrying an \mathcal{O}-algebra structure, singles out certain elements of GaloisRepAdic A — the structures consisting of a free finite A-module V of rank 2, a monoid homomorphism \rho from \mathrm{Gal}(\overline{\mathbb{Q}}/\mathbb{Q}) = \overline{\mathbb{Q}} \simeq_{\mathbb{Q}} \overline{\mathbb{Q}} to \operatorname{End}_A(V), and the adic continuity condition that for each n there is a finite extension L/\mathbb{Q} inside \overline{\mathbb{Q}} such that every \sigma fixing L pointwise acts trivially on V/\mathfrak{m}_A^n V. Given in addition a point \rho_0 of the representation functor at the residue field, i.e. a continuous homomorphism \mathrm{Gal}(\overline{\mathbb{Q}}/\mathbb{Q}) \to \mathrm{GL}_2(k), and an object A of the category of local pro-Artinian \mathcal{O}-algebras, GaloisRep.conditionLifts is the set of continuous homomorphisms \rho' : \mathrm{Gal}(\overline{\mathbb{Q}}/\mathbb{Q}) \to \mathrm{GL}_2(A) such that: \rho' belongs to liftFunctor at A, that is, the push-forward of \rho' along the unique (terminal) morphism A \to k is exactly \rho_0; and, for every morphism f : A \to B in the category with B Artinian, every \rho_B \in GaloisRepAdic B and every basis b of the underlying module of \rho_B indexed by \mathrm{Fin}\,2 whose associated matrices \mathrm{toMatrix}\,b\,b\,(\rho_B(\sigma)) agree for all \sigma with the matrices of the push-forward of \rho' along f, one has \mathcal{D}(\rho_B). Thus the condition is imposed not on \rho' directly but on every module-theoretic realisation, in a basis, of each Artinian push-forward of \rho'.
GaloisRep.conditionSubfunctor assembles these sets into a subfunctor of the representation functor: stability under a morphism g : A \to A' holds because the lift subfunctor is one, and because a test morphism f out of A' pulls back to g followed by f out of A. A simp lemma records that the object part of this subfunctor is the set just described.
Relation to Mathlib
Mathlib supplies CategoryTheory.Subfunctor and the linear-algebra and topological infrastructure; the category of local pro-Artinian \mathcal{O}-algebras, the functor of continuous rank-two representations, its lift subfunctor and the rank-two adic Galois representation structure used here are the project's own notions, and so is the mechanism of cutting out a subfunctor by a condition on Artinian push-forwards.
Where it is used
Subfunctors of this shape are the input to representability criteria for deformation problems with local conditions: once such a subfunctor is shown to be stable under conjugation, reflected by injections and compatible with limits, one obtains a universal deformation ring of type \mathcal{D}, which is the object compared with a Hecke algebra in the Taylor–Wiles argument.
References
- B. Mazur, Deforming Galois representations, in: Galois Groups over \mathbb{Q}, MSRI Publications 16, Springer, 1989, 385–437
- R. Ramakrishna, On a variation of Mazur's deformation functor, Compositio Mathematica 87 (1993), 269–286
- H. Darmon, F. Diamond and R. Taylor, Fermat's Last Theorem, in: Current Developments in Mathematics 1995, International Press, 1995, 1–154, §2
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 43 lines
- 3 declarations
- used in the statements of 10 theorems and imported by 11 proofs
- imports 2 definition modules
Source file: Definitions/Def_GaloisRep_ConditionLifts.lean
Imported by
- no other definition module
Declarations
Source
import Mathlib import Definitions.Def_GaloisRep_Adic import Definitions.Def_Deformations_TraceAlgebra namespace GaloisRep open Deformation CategoryTheory IsLocalRing def conditionLifts (𝒪 : Type) [CommRing 𝒪] [IsLocalRing 𝒪] (𝒟 : ∀ ⦃A : Type⦄ [CommRing A] [IsLocalRing A] [Algebra 𝒪 A], GaloisRepAdic A → Prop) (ρ₀ : (repnFunctor (Fin 2) (AlgebraicClosure ℚ ≃ₐ[ℚ] AlgebraicClosure ℚ) 𝒪).obj ProartinianCat.residueField) (A : ProartinianCat 𝒪) : Set ((repnFunctor (Fin 2) (AlgebraicClosure ℚ ≃ₐ[ℚ] AlgebraicClosure ℚ) 𝒪).obj A) := {ρ' | ρ' ∈ (liftFunctor (Fin 2) (AlgebraicClosure ℚ ≃ₐ[ℚ] AlgebraicClosure ℚ) 𝒪 ρ₀).obj A ∧ ∀ (B : ProartinianCat 𝒪) [IsArtinianRing B] (f : A ⟶ B) (ρB : GaloisRepAdic B) (b : Module.Basis (Fin 2) B ρB.V), (∀ σ, LinearMap.toMatrix b b (ρB.ρ σ) = ((mapRepn (Fin 2) (AlgebraicClosure ℚ ≃ₐ[ℚ] AlgebraicClosure ℚ) 𝒪 f ρ' σ : GL (Fin 2) B) : Matrix (Fin 2) (Fin 2) B)) → 𝒟 ρB} def conditionSubfunctor (𝒪 : Type) [CommRing 𝒪] [IsLocalRing 𝒪] (𝒟 : ∀ ⦃A : Type⦄ [CommRing A] [IsLocalRing A] [Algebra 𝒪 A], GaloisRepAdic A → Prop) (ρ₀ : (repnFunctor (Fin 2) (AlgebraicClosure ℚ ≃ₐ[ℚ] AlgebraicClosure ℚ) 𝒪).obj ProartinianCat.residueField) : Subfunctor (repnFunctor (Fin 2) (AlgebraicClosure ℚ ≃ₐ[ℚ] AlgebraicClosure ℚ) 𝒪) where obj A := conditionLifts 𝒪 𝒟 ρ₀ A map {A A'} g := by rintro ρ' ⟨hlift, hD⟩ refine ⟨(liftFunctor (Fin 2) (AlgebraicClosure ℚ ≃ₐ[ℚ] AlgebraicClosure ℚ) 𝒪 ρ₀).map g hlift, ?_⟩ intro B _ f ρB b hb refine hD B (g ≫ f) ρB b (fun σ => ?_) rw [hb σ] simp only [mapRepn, Functor.map_comp, types_comp_apply] @[simp] lemma conditionSubfunctor_obj (𝒪 : Type) [CommRing 𝒪] [IsLocalRing 𝒪] (𝒟 : ∀ ⦃A : Type⦄ [CommRing A] [IsLocalRing A] [Algebra 𝒪 A], GaloisRepAdic A → Prop) (ρ₀ : (repnFunctor (Fin 2) (AlgebraicClosure ℚ ≃ₐ[ℚ] AlgebraicClosure ℚ) 𝒪).obj ProartinianCat.residueField) (A : ProartinianCat 𝒪) : (conditionSubfunctor 𝒪 𝒟 ρ₀).obj A = conditionLifts 𝒪 𝒟 ρ₀ A := rfl end GaloisRep
Statements phrased using this module (10)
- Uniqueness of the classifying map of a type-D lift
GaloisRep.algHom_unique_of_baseChangeAlong_isEquiv_of_corepresentableBy8 below · depth 9 - Condition subfunctor is contained in the framed lift functor
GaloisRep.conditionSubfunctor_le_liftFunctor0 below · depth 9 - Conjugation-stability of the deformation-condition subfunctor
GaloisRep.conjStable_conditionSubfunctor1 below · depth 9 - Existence of the classifying map to a universal deformation ring
GaloisRep.exists_algHom_baseChangeAlong_isEquiv_of_corepresentableBy6 below · depth 9 - Framed lifts in `conditionLifts` are of type D
GaloisRep.isOfType_framed_of_mem_conditionLifts2 below · depth 9 - Residual representation of type D lies in `conditionLifts`
GaloisRep.mem_conditionLifts_residueField_of_isOfType2 below · depth 9 - Finiteness of the tangent space of a conditioned deformation ring
GaloisRep.moduleFinite_tangentSubmodule_of_tangentFinite1 below · depth 9 - Limit preservation for the deformation-condition subfunctor
GaloisRep.preservesLimits_conditionSubfunctor2 below · depth 9 - Injective morphisms reflect the deformation-condition subfunctor
GaloisRep.reflectedByInjective_conditionSubfunctor3 below · depth 9 - Residual representation of a framed lift of ρ₀
GaloisRep.residual_framed_isEquiv_baseChangeAlong0 below · depth 9