Definitions/Def_AlgebraicGeometry_TowerQuotientDatum.lean
Tower quotient data for finite group actions on π-adic towers
Fix a commutative ring \mathcal O and an element \pi, and write \mathcal O_n := \mathcal O/(\pi^{n+1}). The input data are a sequence of schemes X_n (in universe 0) with structure morphisms xb_n : X_n \to \operatorname{Spec}\mathcal O_n, transition morphisms xt_n : X_n \to X_{n+1}, a group G, and for each n a homomorphism a_n : G \to \operatorname{Aut}(X_n). TowerQuotientDatum is a structure (in Type 1) whose inhabitants package a presentation of the quotient of this tower by G, level by level, all of the asserted properties being carried as fields rather than proved. The fields are: schemes Y_n with morphisms yb_n : Y_n \to \operatorname{Spec}\mathcal O_n and yt_n : Y_n \to Y_{n+1} such that each square formed by yt_n, yb_n, yb_{n+1} and \operatorname{Spec} of the reduction \mathcal O_{n+1} \to \mathcal O_n is a pullback (so Y_n = Y_{n+1}\times_{\operatorname{Spec}\mathcal O_{n+1}}\operatorname{Spec}\mathcal O_n), each yb_n being proper and flat; morphisms p_n : X_n \to Y_n with p_n followed by yb_n equal to xb_n, with xt_n followed by p_{n+1} equal to p_n followed by yt_n, with that square a pullback (X_n = X_{n+1}\times_{Y_{n+1}}Y_n), with G-invariance a_n(g) followed by p_n equal to p_n, and with p_n finite, surjective, and such that for every open U \subseteq Y_n the restriction p_n\mid_U is an epimorphism of schemes. The field univ_loc records a universal property for compatible families only: for a target T, opens U_n \subseteq Y_n with yt_n^{-1}(U_{n+1}) = U_n, and morphisms u_n : p_n^{-1}(U_n) \to T invariant under the restricted automorphisms a_n(g) and compatible with the restrictions of xt_n, there exist v_n : U_n \to T with p_n\mid_{U_n} followed by v_n equal to u_n (uniqueness is not a separate field, being a consequence of the epimorphism field). Two point-counting fields complete the datum: fib says that for every algebraically closed field k each k-point of Y_n lifts to X_n and the lifts form exactly one G-orbit; adicFib says that for a valuation domain R that is an \mathcal O-algebra, complete for the adic topology of (\pi)R and with algebraically closed fraction field, every compatible system of \operatorname{Spec}(R/\pi^{n+1})-points of the Y_n lying over the canonical base points lifts to a compatible system of points of the X_n, and two such lifts differ by a single g \in G simultaneously at all levels. In particular Y_n is nowhere asserted to be the levelwise quotient X_n/G; the fields describe a quotient of the tower truncated modulo \pi^{n+1}.
Relation to Mathlib
Mathlib has no notion of a quotient of a π-adic tower of schemes by a finite group action; this structure is the project's own, assembled from Mathlib's morphism properties (IsProper, Flat, IsFinite, Surjective), IsPullback squares, and the restriction operations Scheme.Hom.resLE and ∣_ on opens.
Where it is used
The structure serves as the interface through which the rest of the development uses such quotients: an existence theorem produces an inhabitant from hypotheses on the input tower, and consumers argue only from the fields listed here (properness and flatness of the quotient levels, finiteness and local epimorphy of p_n, the local universal property, and the descriptions of geometric and \pi-adic points as G-orbits).
References
- H. Darmon, F. Diamond and R. Taylor, Fermat's Last Theorem, in: Current Developments in Mathematics 1995, International Press, 1995, 1–154
- N. M. Katz and B. Mazur, Arithmetic Moduli of Elliptic Curves, Annals of Mathematics Studies 108, Princeton University Press, 1985
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 81 lines
- 23 declarations
- used in the statements of 34 theorems and imported by 35 proofs
- imports 0 definition modules
Source file: Definitions/Def_AlgebraicGeometry_TowerQuotientDatum.lean
Declarations
- structure
AlgebraicGeometry.TowerQuotientDatum - field
AlgebraicGeometry.TowerQuotientDatum.X - field
AlgebraicGeometry.TowerQuotientDatum.xt - field
AlgebraicGeometry.TowerQuotientDatum.G - field
AlgebraicGeometry.TowerQuotientDatum.Y - field
AlgebraicGeometry.TowerQuotientDatum.yb - field
AlgebraicGeometry.TowerQuotientDatum.yt - field
AlgebraicGeometry.TowerQuotientDatum.yt_isPullback - field
AlgebraicGeometry.TowerQuotientDatum.yb_isProper - field
AlgebraicGeometry.TowerQuotientDatum.yb_flat - field
AlgebraicGeometry.TowerQuotientDatum.p - field
AlgebraicGeometry.TowerQuotientDatum.p_over - field
AlgebraicGeometry.TowerQuotientDatum.p_xt - field
AlgebraicGeometry.TowerQuotientDatum.p_isPullback - field
AlgebraicGeometry.TowerQuotientDatum.p_inv - field
AlgebraicGeometry.TowerQuotientDatum.p_isFinite - field
AlgebraicGeometry.TowerQuotientDatum.p_surjective - field
AlgebraicGeometry.TowerQuotientDatum.p_epi_loc - field
AlgebraicGeometry.TowerQuotientDatum.univ_loc - field
AlgebraicGeometry.TowerQuotientDatum.u - field
AlgebraicGeometry.TowerQuotientDatum.fib - field
AlgebraicGeometry.TowerQuotientDatum.adicFib - field
AlgebraicGeometry.TowerQuotientDatum.IsAdicComplete
Source
import Mathlib set_option autoImplicit false open CategoryTheory AlgebraicGeometry namespace AlgebraicGeometry set_option genInjectivity false in set_option genSizeOfSpec false in structure TowerQuotientDatum (𝒪 : Type) [CommRing 𝒪] (π : 𝒪) (X : ℕ → Scheme.{0}) (xb : ∀ n : ℕ, X n ⟶ Spec (CommRingCat.of (𝒪 ⧸ Ideal.span {π ^ (n + 1)}))) (xt : ∀ n : ℕ, X n ⟶ X (n + 1)) (G : Type) [Group G] (a : ∀ n : ℕ, G →* Aut (X n)) : Type 1 where Y : ℕ → Scheme.{0} yb : ∀ n : ℕ, Y n ⟶ Spec (CommRingCat.of (𝒪 ⧸ Ideal.span {π ^ (n + 1)})) yt : ∀ n : ℕ, Y n ⟶ Y (n + 1) yt_isPullback : ∀ n : ℕ, IsPullback (yt n) (yb n) (yb (n + 1)) (Spec.map (CommRingCat.ofHom (Ideal.Quotient.factor (Ideal.span_singleton_le_span_singleton.mpr (pow_dvd_pow π (Nat.le_succ (n + 1))))))) yb_isProper : ∀ n : ℕ, IsProper (yb n) yb_flat : ∀ n : ℕ, Flat (yb n) p : ∀ n : ℕ, X n ⟶ Y n p_over : ∀ n : ℕ, p n ≫ yb n = xb n p_xt : ∀ n : ℕ, xt n ≫ p (n + 1) = p n ≫ yt n p_isPullback : ∀ n : ℕ, IsPullback (xt n) (p n) (p (n + 1)) (yt n) p_inv : ∀ (n : ℕ) (g : G), (a n g).hom ≫ p n = p n p_isFinite : ∀ n : ℕ, IsFinite (p n) p_surjective : ∀ n : ℕ, Surjective (p n) p_epi_loc : ∀ (n : ℕ) (U : (Y n).Opens), Epi ((p n) ∣_ U) univ_loc : ∀ (T : Scheme.{0}) (U : ∀ n : ℕ, (Y n).Opens) (hU : ∀ n : ℕ, (yt n) ⁻¹ᵁ (U (n + 1)) = U n) (u : ∀ n : ℕ, (↑((p n) ⁻¹ᵁ (U n)) : Scheme.{0}) ⟶ T), (∀ (n : ℕ) (g : G), Scheme.Hom.resLE (a n g).hom ((p n) ⁻¹ᵁ (U n)) ((p n) ⁻¹ᵁ (U n)) (by rw [← Scheme.Hom.comp_preimage, p_inv]) ≫ u n = u n) → (∀ n : ℕ, Scheme.Hom.resLE (xt n) ((p (n + 1)) ⁻¹ᵁ (U (n + 1))) ((p n) ⁻¹ᵁ (U n)) (by rw [← Scheme.Hom.comp_preimage, p_xt, Scheme.Hom.comp_preimage, hU]) ≫ u (n + 1) = u n) → ∃ v : ∀ n : ℕ, (↑(U n) : Scheme.{0}) ⟶ T, ∀ n : ℕ, (p n) ∣_ (U n) ≫ v n = u n fib : ∀ (n : ℕ) (k : Type) [Field k] [IsAlgClosed k] (y : Spec (CommRingCat.of k) ⟶ Y n), (∃ x : Spec (CommRingCat.of k) ⟶ X n, x ≫ p n = y) ∧ ∀ x x' : Spec (CommRingCat.of k) ⟶ X n, x ≫ p n = y → (x' ≫ p n = y ↔ ∃ g : G, x' = x ≫ (a n g).hom) adicFib : ∀ (R : Type) [CommRing R] [IsDomain R] [ValuationRing R] [Algebra 𝒪 R], IsAdicComplete (Ideal.span {algebraMap 𝒪 R π}) R → IsAlgClosed (FractionRing R) → ∀ (y : ∀ n : ℕ, Spec (CommRingCat.of (R ⧸ Ideal.span {(algebraMap 𝒪 R π) ^ (n + 1)})) ⟶ Y n), (∀ n : ℕ, y n ≫ yb n = Spec.map (CommRingCat.ofHom (Ideal.quotientMap (Ideal.span {(algebraMap 𝒪 R π) ^ (n + 1)}) (algebraMap 𝒪 R) (by rw [Ideal.span_le, Set.singleton_subset_iff, SetLike.mem_coe, Ideal.mem_comap, map_pow]; exact Ideal.subset_span rfl)))) → (∀ n : ℕ, Spec.map (CommRingCat.ofHom (Ideal.Quotient.factor (Ideal.span_singleton_le_span_singleton.mpr (pow_dvd_pow (algebraMap 𝒪 R π) (Nat.le_succ (n + 1)))))) ≫ y (n + 1) = y n ≫ yt n) → (∃ x : ∀ n : ℕ, Spec (CommRingCat.of (R ⧸ Ideal.span {(algebraMap 𝒪 R π) ^ (n + 1)})) ⟶ X n, (∀ n : ℕ, x n ≫ p n = y n) ∧ ∀ n : ℕ, Spec.map (CommRingCat.ofHom (Ideal.Quotient.factor (Ideal.span_singleton_le_span_singleton.mpr (pow_dvd_pow (algebraMap 𝒪 R π) (Nat.le_succ (n + 1)))))) ≫ x (n + 1) = x n ≫ xt n) ∧ ∀ x x' : ∀ n : ℕ, Spec (CommRingCat.of (R ⧸ Ideal.span {(algebraMap 𝒪 R π) ^ (n + 1)})) ⟶ X n, (∀ n : ℕ, x n ≫ p n = y n) → (∀ n : ℕ, x' n ≫ p n = y n) → (∀ n : ℕ, Spec.map (CommRingCat.ofHom (Ideal.Quotient.factor (Ideal.span_singleton_le_span_singleton.mpr (pow_dvd_pow (algebraMap 𝒪 R π) (Nat.le_succ (n + 1)))))) ≫ x (n + 1) = x n ≫ xt n) → (∀ n : ℕ, Spec.map (CommRingCat.ofHom (Ideal.Quotient.factor (Ideal.span_singleton_le_span_singleton.mpr (pow_dvd_pow (algebraMap 𝒪 R π) (Nat.le_succ (n + 1)))))) ≫ x' (n + 1) = x' n ≫ xt n) → ∃ g : G, ∀ n : ℕ, x' n = x n ≫ (a n g).hom end AlgebraicGeometry
Statements phrased using this module (34)
- Finite-group quotient of a flat proper π-adic tower exists
AlgebraicGeometry.nonempty_towerQuotientDatum_of_isProper_of_flat9 below · depth 29 - Formal quotient datum from a Mumford tower and a tower quotient
CerednikDrinfeld.exists_formalQuotientDatum_coeff_adicFib_of_mumfordTower_of_towerQuotientDatum85 below · depth 29 - Existence of a quotient tower for a finite group action
AlgebraicGeometry.nonempty_towerQuotientDatum_of_isProper_of_flat_of_forall_exists_isAffineOpen7 below · depth 30 - Geometric and adic fibres of the descended quotient map
CerednikDrinfeld.FormalOmega.descendedQuotientMap_fib_adicFib15 below · depth 30 - Universal property of the descended formal quotient tower
CerednikDrinfeld.FormalOmega.descendedQuotientMap_univ20 below · depth 30 - Unramified layer of the descended formal quotient tower
CerednikDrinfeld.FormalOmega.descendedQuotientMap_unramifiedLayer49 below · depth 30 - Descent of the period maps to the finite-group quotient tower
CerednikDrinfeld.FormalOmega.exists_descendedQuotientMap0 below · depth 30 - Global universal property of a tower quotient datum
AlgebraicGeometry.TowerQuotientDatum.existsUnique_forall_p_comp_eq0 below · depth 31 - Flat base change of a tower quotient datum
AlgebraicGeometry.TowerQuotientDatum.exists_baseChange_of_flat_of_isPullback22 below · depth 31 - The twisted Mumford tower admits an unramified presentation
CerednikDrinfeld.FormalOmega.MumfordTower.nonempty_nrPresentation10 below · depth 31 - Adic points and fibres of the descended quotient map
CerednikDrinfeld.FormalOmega.descendedQuotientMap_adicFib11 below · depth 31 - Geometric fibres of the descended Mumford-tower quotient map
CerednikDrinfeld.FormalOmega.descendedQuotientMap_fib5 below · depth 31 - Charts of the unramified layer of the descended Čerednik–Drinfeld tower
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrCharts10 below · depth 31 - Chart functions on the unramified layer: injectivity and descent criterion
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrFunctions17 below · depth 31 - Local universal property under flat base change of a tower quotient
AlgebraicGeometry.TowerQuotientDatum.univ_loc_of_isPullback_of_flat21 below · depth 32 - Unramified edge charts compute the descended quotient point
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrCharts_comp_rY0 below · depth 32 - Chart images in the descended unramified quotient: open and covering
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrCharts_isOpen_and_cover1 below · depth 32 - Transition law and images of the unramified-layer quotient charts
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrCharts_transition6 below · depth 32 - Compatible sections of the unramified quotient are determined by chart values
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrFunctions_inj1 below · depth 32 - Chart values of compatible sections are Γ'-invariant
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrFunctions_inv_of_sections1 below · depth 32 - Lifting an invariant compatible family of chart functions to sections
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrFunctions_sections_of_inv12 below · depth 32 - Base-changed tower quotient: surjectivity, closedness, orbits, open descent
AlgebraicGeometry.TowerQuotientDatum.exists_preimage_eq_of_isPullback_of_forall_preimage_eq0 below · depth 33 - Chart data on basic opens of the base-changed quotient tower
AlgebraicGeometry.TowerQuotientDatum.exists_ringEquiv_fixedPoints_quotient_basicOpen_of_isPullback_of_flat12 below · depth 33 - Chart rings of a tower quotient datum over affine opens
AlgebraicGeometry.TowerQuotientDatum.exists_ringEquiv_fixedPoints_quotient_of_isAffineOpen0 below · depth 33 - Descent of compatible chart functions along a tower quotient
AlgebraicGeometry.TowerQuotientDatum.exists_sections_eq_of_forall_specMap_comp_eq0 below · depth 33 - Fibres of a tower quotient datum's projection are G-orbits
AlgebraicGeometry.TowerQuotientDatum.p_base_eq_iff_and_preimage_image_eq0 below · depth 33 - Local universal property after flat base change, assuming charts
AlgebraicGeometry.TowerQuotientDatum.univ_loc_of_isPullback_of_flat_of_forall_exists_chart5 below · depth 33 - Unramified charts commute with the X'-tower transitions
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrCharts_kappa_transition5 below · depth 33 - Chart overlap agreement for invariant functions on the unramified layer
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrFunctions_overlap_agreement8 below · depth 33 - Invariants of the base-changed chart ring: completeness and levels
AlgebraicGeometry.TowerQuotientDatum.isAdicComplete_fixedPoints_and_exists_ringEquiv_quotient_basicOpen9 below · depth 34 - Locally Γ'-related Deligne data at translated chart points
CerednikDrinfeld.FormalOmega.descendedQuotientMap_nrFunctions_related_locally1 below · depth 34 - A flat model A' for the base-changed chart ring
AlgebraicGeometry.TowerQuotientDatum.exists_flat_ringEquiv_tensorProduct_quotient_and_sections_basicOpen2 below · depth 35 - Base-changed quotient: sections over rₙ⁻¹(Vₙ) and D(φₙ b)
AlgebraicGeometry.TowerQuotientDatum.exists_ringEquiv_quotient_sections_preimage_and_basicOpen0 below · depth 36 - Primed chart ring as a base change: R'/πⁿ⁺¹≅ (R⊗_A A')/πⁿ⁺¹
AlgebraicGeometry.TowerQuotientDatum.exists_ringEquiv_tensorProduct_quotient_of_ringEquiv_sections_basicOpen0 below · depth 36