Definitions/Def_AlgebraicGeometry_GradedOAlgebraSectionRing.lean
Tensor-power isomorphisms and the graded section-ring predicate
Let X be a scheme and L an object of X.Modules, the symmetric monoidal category of sheaves of modules on X. Three helper isomorphisms are defined by recursion on the exponent, matching the recursion defining tensorPow (degree 0 is the monoidal unit, and passing from n to n+1 tensors on the right by L). tensorPowAdd L m n is the isomorphism L^{\otimes m}\otimes L^{\otimes n}\cong L^{\otimes(m+n)}, given at n=0 by the right unitor and otherwise by reassociating and whiskering the previous case on the right by L. tensorPowMapIso turns an isomorphism e:L_1\cong L_2 into L_1^{\otimes n}\cong L_2^{\otimes n} by tensoring n copies of e. pullbackTensorPowIso c L, for c:X\to Y and L on Y, is c^*(L^{\otimes n})\cong (c^*L)^{\otimes n}, assembled from the comparison isomorphisms pullbackTensorUnitObjIso and pullbackTensorObjIso of the monoidal functor Modules.pullback c.
For a commutative ring S and a morphism f:X\to \operatorname{Spec} S, baseScalar f s is the global section of X obtained by transporting s\in S through the inverse of the \Gamma–\operatorname{Spec} isomorphism and then applying f on global sections; it is the structural S-algebra action on \Gamma(X,\top).
IsSectionRing f L R 𝓡 ι is a Prop-valued structure on the data of such an f, an object L of X.Modules, a commutative S-algebra R with an \mathbb N-grading 𝓡 by S-submodules making it a graded algebra, and a family of bare functions \iota_n:𝓡_n\to\Gamma(L^{\otimes n},\top). Its fields assert: each \iota_n is bijective; each \iota_n is additive; \iota_n(s\cdot x)=\mathrm{baseScalar}(f)(s)\cdot\iota_n(x); \iota_0(1) is the unit global section unitSection ⊤; and for homogeneous x\in 𝓡_m, y\in 𝓡_n, \iota_{m+n}(xy) is the image of tensorSections (ι m x) (ι n y) under tensorPowAdd L m n evaluated on \top. Thus the predicate records that the given presentation (R,𝓡,\iota) identifies R degreewise and multiplicatively with \bigoplus_n\Gamma(X,L^{\otimes n}); it is a condition on the chosen maps \iota, not the assertion that some isomorphism exists.
Relation to Mathlib
Mathlib has no monoidal structure on SheafOfModules, nor a notion of the graded ring of sections of a sheaf of modules; the monoidal structure, the tensor powers and IsSectionRing are the project's own.
Where it is used
These definitions form part of the scheme-theoretic infrastructure by which a graded ring is recognised as the ring of sections of a sheaf of modules on a scheme over \operatorname{Spec} S, allowing graded-ring computations to be transferred to the geometry of X in the modules-and-sheaves layer of the formalisation.
References
- R. Hartshorne, Algebraic Geometry, Graduate Texts in Mathematics 52, Springer, 1977
- U. Görtz and T. Wedhorn, Algebraic Geometry I: Schemes, Vieweg+Teubner, 2010
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 60 lines
- 11 declarations
- used in the statements of 17 theorems and imported by 18 proofs
- imports 2 definition modules
Source file: Definitions/Def_AlgebraicGeometry_GradedOAlgebraSectionRing.lean
Imported by
Declarations
- def
AlgebraicGeometry.Scheme.Modules.tensorPowAdd - def
AlgebraicGeometry.Scheme.Modules.tensorPowMapIso - def
AlgebraicGeometry.Scheme.Modules.pullbackTensorPowIso - def
AlgebraicGeometry.GradedOAlgebra.baseScalar - structure
AlgebraicGeometry.GradedOAlgebra.IsSectionRing - field
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.R - field
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.bijective - field
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.map_add - field
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.map_smul - field
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.map_one - field
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.map_mul
Source
import Mathlib import Definitions.Def_AlgebraicGeometry_ModulesSectionsTensorV2 import Definitions.Def_AlgebraicGeometry_ModulesPullbackMonoidalV2 set_option autoImplicit false universe u open CategoryTheory MonoidalCategory Opposite noncomputable section namespace AlgebraicGeometry.Scheme.Modules variable {X : Scheme.{u}} def tensorPowAdd (L : X.Modules) (m : ℕ) : (n : ℕ) → (L.tensorPow m ⊗ L.tensorPow n ≅ L.tensorPow (m + n)) | 0 => ρ_ (L.tensorPow m) | n + 1 => (α_ (L.tensorPow m) (L.tensorPow n) L).symm ≪≫ whiskerRightIso (tensorPowAdd L m n) L def tensorPowMapIso {L₁ L₂ : X.Modules} (e : L₁ ≅ L₂) : (n : ℕ) → (L₁.tensorPow n ≅ L₂.tensorPow n) | 0 => Iso.refl _ | n + 1 => tensorIso (tensorPowMapIso e n) e def pullbackTensorPowIso {Y : Scheme.{u}} (c : X ⟶ Y) (L : Y.Modules) : (n : ℕ) → ((Modules.pullback c).obj (L.tensorPow n) ≅ ((Modules.pullback c).obj L).tensorPow n) | 0 => pullbackTensorUnitObjIso c | n + 1 => pullbackTensorObjIso c (L.tensorPow n) L ≪≫ whiskerRightIso (pullbackTensorPowIso c L n) ((Modules.pullback c).obj L) end AlgebraicGeometry.Scheme.Modules namespace AlgebraicGeometry.GradedOAlgebra open AlgebraicGeometry.Scheme.Modules variable {S : Type u} [CommRing S] {X : Scheme.{u}} def baseScalar (f : X ⟶ Spec (CommRingCat.of S)) (s : S) : Γ(X, ⊤) := f.appTop.hom ((Scheme.ΓSpecIso (CommRingCat.of S)).inv.hom s) structure IsSectionRing (f : X ⟶ Spec (CommRingCat.of S)) (L : X.Modules) (R : Type u) [CommRing R] [Algebra S R] (𝓡 : ℕ → Submodule S R) [GradedAlgebra 𝓡] (ι : ∀ n : ℕ, 𝓡 n → Γ(L.tensorPow n, ⊤)) : Prop where bijective : ∀ n, Function.Bijective (ι n) map_add : ∀ n (x y : 𝓡 n), ι n (x + y) = ι n x + ι n y map_smul : ∀ n (s : S) (x : 𝓡 n), ι n (s • x) = baseScalar f s • ι n x map_one : ι 0 ⟨1, SetLike.GradedOne.one_mem⟩ = unitSection ⊤ map_mul : ∀ m n (x : 𝓡 m) (y : 𝓡 n), ι (m + n) ⟨(x : R) * (y : R), SetLike.GradedMul.mul_mem x.2 y.2⟩ = ((tensorPowAdd L m n).hom.app ⊤) (tensorSections (ι m x) (ι n y)) end AlgebraicGeometry.GradedOAlgebra end
Statements phrased using this module (17)
- Descent cocycle for the section ring of an invertible module
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.cocycle_trans_symm_of_cocycle45 below · depth 35 - Section rings compare along the first coface of a flat base change
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.exists_algHom_bijective_lift_of_isPullback_includeLeft24 below · depth 35 - Section rings along the second coface of a flat base change
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.exists_algHom_bijective_lift_of_isPullback_includeRight24 below · depth 35 - Existence of the section ring of an invertible module
AlgebraicGeometry.GradedOAlgebra.exists_isSectionRing11 below · depth 35 - Base-change functoriality of graded section rings
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.exists_algHom_apply_eq_pullback_of_isPullback7 below · depth 36 - Section rings under base change along S' → S' ⊗_S B
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.exists_algHom_bijective_lift_tensorProduct_of_isPullback24 below · depth 36 - Section rings commute with flat base change
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.isBaseChange_of_apply_eq_pullback_of_flat14 below · depth 36 - Composing section-ring comparison maps along d gg c
AlgebraicGeometry.GradedOAlgebra.apply_comp_eq_pullback_comp_of_apply_eq_pullback9 below · depth 36 - Transport of the pullback comparison formula along c = c'
AlgebraicGeometry.GradedOAlgebra.apply_eq_pullback_congr_hom0 below · depth 36 - Uniqueness of a degreewise pull-back-compatible ring map
AlgebraicGeometry.GradedOAlgebra.ringHom_apply_eq_of_apply_eq_pullback0 below · depth 36 - Tensor powers of a section: g^{⊗ m}⊗ g^{⊗ n}↦ g^{⊗(m+n)}
AlgebraicGeometry.Scheme.Modules.tensorPowAdd_hom_app_tensorSections_tensorPowSection6 below · depth 36 - Pullback of tensor-power sections respects base scalars
AlgebraicGeometry.Scheme.Modules.app_pullbackTensorPowIso_tensorPowMapIso_baseScalar_smul0 below · depth 37 - Tensor-power pull-back comparison of sections is compositional
AlgebraicGeometry.Scheme.Modules.app_pullbackTensorPowIso_tensorPowMapIso_comp8 below · depth 37 - Pullback of global sections is multiplicative on tensor powers
AlgebraicGeometry.Scheme.Modules.app_pullbackTensorPowIso_tensorPowMapIso_tensorPowAdd_tensorSections3 below · depth 37 - Unit section preserved by the degree-zero tensor-power comparison
AlgebraicGeometry.Scheme.Modules.app_pullbackTensorPowIso_tensorPowMapIso_unitSection1 below · depth 37 - Pullback compatibility of tensor-power multiplication isomorphisms
AlgebraicGeometry.Scheme.Modules.map_tensorPowAdd_hom_comp_pullbackTensorPowIso_tensorPowMapIso_hom0 below · depth 38 - Compatibility of pullback tensor-power isomorphisms with composition
AlgebraicGeometry.Scheme.Modules.pullbackTensorPowIso_trans_tensorPowMapIso_comp6 below · depth 38