Definitions/Def_AlgebraicGeometry_TorsionCharacter.lean
Characters of relative -torsion as a functor-of-points structure
The setting is a commutative ring S, a scheme morphism f\colon A \to \operatorname{Spec} S carrying a relative group law L : RelativeGroupLaw S f, a natural number n, and a morphism \iota\colon \operatorname{Spec} R \to \operatorname{Spec} S with R a commutative ring, thought of as an affine base change of S. Recall that a RelativeGroupLaw equips, for every scheme T and every morphism t\colon T \to \operatorname{Spec} S, the set SchemeHomOver t f of morphisms T \to A over \operatorname{Spec} S with a group structure, natural in (T,t); L.IsTorsionPoint t n x is the condition L.nsmul t n x = L.one t, where nsmul is the n-fold iterate of L.mul starting from the unit section, so it says that x is killed by n in that group.
The structure TorsionCharacter L n ι packages a character of the n-torsion over R in functor-of-points form. Its field val assigns, to each commutative ring T, each morphism \kappa\colon \operatorname{Spec} T \to \operatorname{Spec} R, each point x of A over \kappa followed by \iota, and each proof that x is n-torsion for L, a unit \chi(x) \in T^{\times}. The field val_mul asserts multiplicativity: whenever x, y and their product L.mul are n-torsion, the value at the product is the product of the values. The field val_natural expresses naturality in the test ring relationally rather than by transport of structure: given ring homomorphisms \varphi\colon T \to T' and morphisms \kappa, \kappa' with \operatorname{Spec}\varphi followed by \kappa equal to \kappa', and n-torsion points x over \kappa and x' over \kappa' whose underlying scheme morphisms satisfy x' = \operatorname{Spec}\varphi followed by x, the value at x' is the image of the value at x under the induced map T^{\times} \to T'^{\times}. The accompanying extensionality lemma ext states that two such characters with equal val fields coincide. Values are taken in the full unit group, not in n-th roots of unity, and no finiteness, flatness or representability hypothesis on the n-torsion is imposed.
Relation to Mathlib
Mathlib has group objects in a monoidal category and Hopf-algebraic notions, but no functor-of-points relative group law over an affine base of this shape and no corresponding notion of character of the n-torsion; both RelativeGroupLaw and TorsionCharacter are the project's own, phrased in terms of the subtype SchemeHomOver of morphisms over a fixed base morphism.
Where it is used
This module supplies the vocabulary in which the R-points of the Cartier dual of the n-torsion of a relative group law are spoken about: once the n-torsion is represented by a finite free Hopf algebra, such characters correspond to homomorphisms into \mathbb{G}_m. It feeds the treatment of torsion on Jacobians and abelian schemes with good reduction used in the analysis of the Galois representations attached to the Frey curve.
References
- S. Bosch, W. Lütkebohmert and M. Raynaud, Néron Models, Ergebnisse der Mathematik und ihrer Grenzgebiete 21, Springer, 1990
- W. C. Waterhouse, Introduction to Affine Group Schemes, Graduate Texts in Mathematics 66, Springer, 1979
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 47 lines
- 8 declarations
- used in the statements of 14 theorems and imported by 15 proofs
- imports 1 definition modules
Source file: Definitions/Def_AlgebraicGeometry_TorsionCharacter.lean
Imported by
- no other definition module
Declarations
- structure
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter - field
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter.val - field
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter.x - field
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter.val_mul - field
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter.hxy - field
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter.val_natural - field
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter.x' - theorem
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter.ext
Source
import Definitions.Def_GoodReductionJacobian_RelativeGroupLawKernel set_option autoImplicit false noncomputable section universe u open CategoryTheory CategoryTheory.Limits AlgebraicGeometry NeronModelInfra GoodReductionJacobian namespace GoodReductionJacobian.RelativeGroupLaw variable {S : Type u} [CommRing S] {A : Scheme.{u}} {f : A ⟶ Spec (CommRingCat.of S)} structure TorsionCharacter (L : RelativeGroupLaw S f) (n : ℕ) {R : Type u} [CommRing R] (ι : Spec (CommRingCat.of R) ⟶ Spec (CommRingCat.of S)) where val : ∀ (T : Type u) [CommRing T] (κ : Spec (CommRingCat.of T) ⟶ Spec (CommRingCat.of R)) (x : SchemeHomOver (κ ≫ ι) f), L.IsTorsionPoint (κ ≫ ι) n x → Tˣ val_mul : ∀ (T : Type u) [CommRing T] (κ : Spec (CommRingCat.of T) ⟶ Spec (CommRingCat.of R)) (x y : SchemeHomOver (κ ≫ ι) f) (hx : L.IsTorsionPoint (κ ≫ ι) n x) (hy : L.IsTorsionPoint (κ ≫ ι) n y) (hxy : L.IsTorsionPoint (κ ≫ ι) n (L.mul (κ ≫ ι) x y)), val T κ (L.mul (κ ≫ ι) x y) hxy = val T κ x hx * val T κ y hy val_natural : ∀ (T T' : Type u) [CommRing T] [CommRing T'] (κ : Spec (CommRingCat.of T) ⟶ Spec (CommRingCat.of R)) (κ' : Spec (CommRingCat.of T') ⟶ Spec (CommRingCat.of R)) (φ : T →+* T'), Spec.map (CommRingCat.ofHom φ) ≫ κ = κ' → ∀ (x : SchemeHomOver (κ ≫ ι) f) (hx : L.IsTorsionPoint (κ ≫ ι) n x) (x' : SchemeHomOver (κ' ≫ ι) f) (hx' : L.IsTorsionPoint (κ' ≫ ι) n x'), x'.1 = Spec.map (CommRingCat.ofHom φ) ≫ x.1 → val T' κ' x' hx' = Units.map (φ : T →* T') (val T κ x hx) namespace TorsionCharacter variable {L : RelativeGroupLaw S f} {n : ℕ} {R R' : Type u} [CommRing R] [CommRing R'] {ι : Spec (CommRingCat.of R) ⟶ Spec (CommRingCat.of S)} {ι' : Spec (CommRingCat.of R') ⟶ Spec (CommRingCat.of S)} @[ext] theorem ext {χ χ' : TorsionCharacter L n ι} (h : χ.val = χ'.val) : χ = χ' := by cases χ; cases χ'; cases h; rfl end TorsionCharacter end GoodReductionJacobian.RelativeGroupLaw end
Statements phrased using this module (14)
- Symmetric square-trivial rigidified bundles as 2-torsion characters
AlgebraicGeometry.Polarisation.exists_torsionCharacter_two_bijOn_symmetric_tensor_self_rigidifiedLineBundle988 below · depth 37 - Torsion characters as points of the Cartier dual
GoodReductionJacobian.RelativeGroupLaw.TorsionCharacter.exists_equiv_algHom_cartierDual_of_torsionSubset_equiv0 below · depth 37 - Representability of n-torsion by a finite free Hopf algebra
GoodReductionJacobian.RelativeGroupLaw.exists_hopfAlgebra_equiv_torsionSubset_of_isLocalRing_of_isNoetherianRing809 below · depth 37 - 2-torsion characters from [2]^*-trivial rigidified line bundles
AlgebraicGeometry.Polarisation.exists_torsionCharacter_two_bijOn_pullback_schemeNsmul_two_trivial_rigidifiedLineBundle108 below · depth 38 - Symmetric and locally square-trivial iff [2]^*N is trivial
AlgebraicGeometry.Polarisation.locIsoOnBase_negMor_and_tensor_self_iff_nonempty_pullback_schemeNsmul_two_iso_unit987 below · depth 38 - Multiplication by 2 on an abelian scheme is affine, flat, surjective
GoodReductionJacobian.RelativeGroupLaw.isAffineHom_flat_surjective_schemeNsmul_two_of_isFinite_flat_schemeKerStr715 below · depth 38 - Realising every 2-torsion character by a rigidified line bundle
AlgebraicGeometry.Polarisation.exists_rigidifiedLineBundle_pullback_schemeNsmul_two_trivial_hasValue_translate91 below · depth 39 - Existence of the 2-torsion descent character Φ
AlgebraicGeometry.Polarisation.exists_torsionCharacter_two_hasValue_translate_of_pullback_schemeNsmul_two_trivial68 below · depth 39 - Rigidified bundles killed by [2]^*: symmetry and 2-torsion
AlgebraicGeometry.Polarisation.locIsoOnBase_negMor_and_locIsoOnBase_tensor_self_of_nonempty_pullback_schemeNsmul_two_iso_unit980 below · depth 39 - Rigidified line bundles with the same descent character agree
AlgebraicGeometry.Polarisation.nonempty_iso_of_hasValue_translate_eq_of_pullback_schemeNsmul_two_trivial11 below · depth 39 - Local symmetry and N^{⊗ 2}≅𝒪 force [2]^*N≅𝒪
AlgebraicGeometry.Polarisation.nonempty_pullback_schemeNsmul_two_iso_unit_of_locIsoOnBase_negMor_of_locIsoOnBase_tensor_self372 below · depth 39 - Naturality of the 2-torsion descent character in the test ring
AlgebraicGeometry.Polarisation.torsionCharacter_val_pullbackAlong_eq_of_hasValue_translate56 below · depth 39 - Descent function over [2] realising a 2-torsion character
AlgebraicGeometry.Polarisation.exists_appTop_eq_one_and_mul_eq_and_appTop_eq_torsionCharacter_two_val2 below · depth 40 - Theorem of the square for [2] over an affine base
AlgebraicGeometry.Polarisation.nonempty_pullback_schemeNsmul_two_iso_tensor_pullback_negMor_of_rigidified366 below · depth 40