Definitions/Def_AlgebraicGeometry_DescentCharacter.lean
Descent discrepancy and base-constant values of pullback isomorphisms
Fix schemes X,Y, an endomorphism T\colon X\to X and a morphism q\colon X\to Y with T followed by q equal to q. For a sheaf of modules M on Y, transportIso is the isomorphism T^{*}(q^{*}M)\cong q^{*}M obtained from the pseudofunctoriality isomorphism T^{*}q^{*}\cong (T\gg q)^{*} together with the congruence of inverse-image functors along the equality T\gg q=q; transportNatIso is the same datum as a natural isomorphism q^{*}\cdot T^{*}\cong q^{*} of functors, and transportNatIso_app records that its components are the former. Given N,M on Y and an isomorphism \beta\colon q^{*}N\cong q^{*}M, translateIso is the T-translate of \beta, namely T^{*}\beta conjugated by the transport isomorphisms at N and at M, again an isomorphism q^{*}N\cong q^{*}M; discrepancy is the automorphism of q^{*}M given by \beta^{-1} followed by this translate.
For f\colon X\to\operatorname{Spec}R with R a commutative ring, c\in R and an open U\subseteq X, baseSection is the section c|_{U}\in\Gamma(X,U) obtained by transporting c through the global sections of f and restricting from X to U; baseSectionRingHom packages c\mapsto c|_{U} as a ring homomorphism R\to\Gamma(X,U), and the accompanying lemmas give 1|_{U}=1, (cc')|_{U}=c|_{U}c'|_{U} and compatibility with the restriction maps of \mathcal O_{X}. An endomorphism \sigma of a sheaf of modules M on X satisfies IsBaseScalar for c when \sigma_{U}(s)=c|_{U}\cdot s for every open U and every s\in\Gamma(M,U) — a section-wise condition, not a statement about \Gamma(X,\mathcal O_{X}). Then HasValue asserts that the discrepancy of a given \beta is multiplication by c in this sense, and IsCharValue is the existential form: some isomorphism q^{*}N\cong q^{*}M has discrepancy multiplication by c. Both are predicates; no uniqueness of c is asserted here, and HasValue depends on the chosen \beta.
Relation to Mathlib
The inverse-image functors on sheaves of modules over schemes and their pseudofunctoriality and congruence isomorphisms are Mathlib's (Scheme.Modules.pullback, Scheme.Modules.pullbackComp, Scheme.Modules.pullbackCongr); the transport, translate, discrepancy and the value predicates assembled from them are the project's own.
Where it is used
The guiding case is q=[n] on an abelian scheme over R with T translation by an n-torsion section, where the value of the discrepancy of a trivialisation [n]^{*}N\cong\mathcal O_A is the value at that section of the character attached to N by descent along the A[n]-torsor [n], i.e. Mumford's pairing; with N=T_y^{*}\mathcal L and M=\mathcal L one obtains the Riemann form e_n^{\mathcal L}. These definitions are the common vocabulary for the modules developing such pairings on torsion of elliptic curves, which underlie the Galois-theoretic properties of the mod n representations used in the argument.
References
- D. Mumford, Abelian Varieties, Tata Institute of Fundamental Research Studies in Mathematics 5, Oxford University Press, 1970, §§15, 20
- A. Grothendieck and J. Dieudonné, Éléments de géométrie algébrique IV, Publ. Math. IHÉS 20 (1964), 24 (1965), 28 (1966), 32 (1967)
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 75 lines
- 14 declarations
- used in the statements of 18 theorems and imported by 19 proofs
- imports 0 definition modules
Source file: Definitions/Def_AlgebraicGeometry_DescentCharacter.lean
Declarations
- def
AlgebraicGeometry.DescentCharacter.transportIso - def
AlgebraicGeometry.DescentCharacter.transportNatIso - theorem
AlgebraicGeometry.DescentCharacter.transportNatIso_app - def
AlgebraicGeometry.DescentCharacter.translateIso - def
AlgebraicGeometry.DescentCharacter.discrepancy - def
AlgebraicGeometry.DescentCharacter.baseSection - def
AlgebraicGeometry.DescentCharacter.baseSectionRingHom - theorem
AlgebraicGeometry.DescentCharacter.baseSectionRingHom_apply - theorem
AlgebraicGeometry.DescentCharacter.baseSection_one - theorem
AlgebraicGeometry.DescentCharacter.baseSection_mul - theorem
AlgebraicGeometry.DescentCharacter.map_baseSection - def
AlgebraicGeometry.DescentCharacter.IsBaseScalar - def
AlgebraicGeometry.DescentCharacter.HasValue - def
AlgebraicGeometry.DescentCharacter.IsCharValue
Source
import Mathlib set_option autoImplicit false noncomputable section universe u open CategoryTheory CategoryTheory.Limits TopologicalSpace Opposite namespace AlgebraicGeometry.DescentCharacter variable {X Y : Scheme.{u}} def transportIso {T : X ⟶ X} {q : X ⟶ Y} (h : T ≫ q = q) (M : Y.Modules) : (Scheme.Modules.pullback T).obj ((Scheme.Modules.pullback q).obj M) ≅ (Scheme.Modules.pullback q).obj M := (Scheme.Modules.pullbackComp T q).app M ≪≫ (Scheme.Modules.pullbackCongr h).app M def transportNatIso {T : X ⟶ X} {q : X ⟶ Y} (h : T ≫ q = q) : Scheme.Modules.pullback q ⋙ Scheme.Modules.pullback T ≅ Scheme.Modules.pullback q := Scheme.Modules.pullbackComp T q ≪≫ Scheme.Modules.pullbackCongr h theorem transportNatIso_app {T : X ⟶ X} {q : X ⟶ Y} (h : T ≫ q = q) (M : Y.Modules) : (transportNatIso h).app M = transportIso h M := rfl def translateIso {T : X ⟶ X} {q : X ⟶ Y} (h : T ≫ q = q) {N M : Y.Modules} (β : (Scheme.Modules.pullback q).obj N ≅ (Scheme.Modules.pullback q).obj M) : (Scheme.Modules.pullback q).obj N ≅ (Scheme.Modules.pullback q).obj M := (transportIso h N).symm ≪≫ (Scheme.Modules.pullback T).mapIso β ≪≫ transportIso h M def discrepancy {T : X ⟶ X} {q : X ⟶ Y} (h : T ≫ q = q) {N M : Y.Modules} (β : (Scheme.Modules.pullback q).obj N ≅ (Scheme.Modules.pullback q).obj M) : (Scheme.Modules.pullback q).obj M ≅ (Scheme.Modules.pullback q).obj M := β.symm ≪≫ translateIso h β variable {R : Type u} [CommRing R] def baseSection (f : X ⟶ Spec (CommRingCat.of R)) (c : R) (U : X.Opens) : Γ(X, U) := X.presheaf.map (homOfLE (le_top (a := U))).op (f.appTop ((Scheme.ΓSpecIso (CommRingCat.of R)).inv c)) def baseSectionRingHom (f : X ⟶ Spec (CommRingCat.of R)) (U : X.Opens) : R →+* Γ(X, U) := (X.presheaf.map (homOfLE (le_top (a := U))).op).hom.comp (f.appTop.hom.comp (Scheme.ΓSpecIso (CommRingCat.of R)).inv.hom) @[simp] theorem baseSectionRingHom_apply (f : X ⟶ Spec (CommRingCat.of R)) (U : X.Opens) (c : R) : baseSectionRingHom f U c = baseSection f c U := rfl @[simp] theorem baseSection_one (f : X ⟶ Spec (CommRingCat.of R)) (U : X.Opens) : baseSection f 1 U = 1 := by rw [← baseSectionRingHom_apply, map_one] @[simp] theorem baseSection_mul (f : X ⟶ Spec (CommRingCat.of R)) (c c' : R) (U : X.Opens) : baseSection f (c * c') U = baseSection f c U * baseSection f c' U := by simp only [← baseSectionRingHom_apply, map_mul] theorem map_baseSection (f : X ⟶ Spec (CommRingCat.of R)) (c : R) {U V : X.Opens} (i : V ⟶ U) : X.presheaf.map i.op (baseSection f c U) = baseSection f c V := by unfold baseSection rw [← CategoryTheory.comp_apply, ← X.presheaf.map_comp] rfl def IsBaseScalar (f : X ⟶ Spec (CommRingCat.of R)) {M : X.Modules} (σ : M ⟶ M) (c : R) : Prop := ∀ (U : X.Opens) (s : Γ(M, U)), σ.app U s = baseSection f c U • s def HasValue (f : X ⟶ Spec (CommRingCat.of R)) {T : X ⟶ X} {q : X ⟶ Y} (h : T ≫ q = q) {N M : Y.Modules} (β : (Scheme.Modules.pullback q).obj N ≅ (Scheme.Modules.pullback q).obj M) (c : R) : Prop := IsBaseScalar f (discrepancy h β).hom c def IsCharValue (f : X ⟶ Spec (CommRingCat.of R)) {T : X ⟶ X} {q : X ⟶ Y} (h : T ≫ q = q) (N M : Y.Modules) (c : R) : Prop := ∃ β : (Scheme.Modules.pullback q).obj N ≅ (Scheme.Modules.pullback q).obj M, HasValue f h β c end AlgebraicGeometry.DescentCharacter end
Statements phrased using this module (18)
- 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 line bundles with the same descent character agree
AlgebraicGeometry.Polarisation.nonempty_iso_of_hasValue_translate_eq_of_pullback_schemeNsmul_two_trivial11 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 - Endomorphisms of an invertible module as unique base constants
AlgebraicGeometry.DescentCharacter.existsUnique_isBaseScalar_of_isInvertible_of_bijective1 below · depth 40 - Unique descent of an isomorphism with trivial descent character
AlgebraicGeometry.DescentCharacter.existsUnique_iso_mapIso_eq_of_hasValue_one3 below · depth 40 - Effectivity of descent data for invertible modules along affine faithfully flat maps
AlgebraicGeometry.DescentCharacter.exists_isInvertible_iso_comp_eq_of_cocycle28 below · depth 40 - Descent character values multiply under composition
AlgebraicGeometry.DescentCharacter.hasValue_comp_of_comp_eq1 below · depth 40 - Base change of descent-character values along commuting squares
AlgebraicGeometry.DescentCharacter.hasValue_map_pullback_of_comm_sq1 below · depth 40 - Base-scalar automorphisms have descent value one
AlgebraicGeometry.DescentCharacter.hasValue_one_of_isBaseScalar1 below · depth 40 - Pulled-back isomorphisms have descent value one
AlgebraicGeometry.DescentCharacter.hasValue_pullback_mapIso_one0 below · depth 40 - Inverse identification carries the inverse descent value
AlgebraicGeometry.DescentCharacter.hasValue_symm_of_mul_eq_one0 below · depth 40 - Multiplicativity of descent-character values under tensor product
AlgebraicGeometry.DescentCharacter.hasValue_tensor4 below · depth 40 - Multiplicativity of the descent character under composition
AlgebraicGeometry.DescentCharacter.hasValue_trans0 below · depth 40 - Transported descended isomorphism has descent-character value c
AlgebraicGeometry.DescentCharacter.hasValue_transport_of_pullback_map_comp_sectionScalar_eq_of_appTop_eq0 below · depth 40 - Base-scalar endomorphisms pull back along φ
AlgebraicGeometry.DescentCharacter.isBaseScalar_pullback_map0 below · depth 40 - Multiplication by a unit-and-cocycle function gives a descent datum
AlgebraicGeometry.DescentCharacter.pullback_map_sectionScalar_comp_canonical_unit_and_cocycle0 below · depth 40 - 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