Definitions/Def_AlgebraicGeometry_GradedOAlgebraToProj.lean
Recognising the canonical morphism to Proj of a section ring
Fix a commutative ring S, a scheme X with a structure morphism f : X \to \operatorname{Spec} S, an object L of X's category of sheaves of modules, a commutative S-algebra R with an \mathbb{N}-grading by S-submodules \mathcal{R}_n \subseteq R making R a graded algebra, and a family of maps \iota_n : \mathcal{R}_n \to \Gamma(L^{\otimes n}, \top) into the global sections of the tensor powers L^{\otimes 0} = \mathcal{O}_X, L^{\otimes (n+1)} = L^{\otimes n} \otimes L. The module defines a Prop-valued structure IsCanonicalToProj which is a predicate on a morphism \theta : X \to \operatorname{Proj} \mathcal{R}, with three fields.
First, comp_toSpecZero: \theta followed by the canonical \operatorname{Proj} \mathcal{R} \to \operatorname{Spec} \mathcal{R}_0 and then by \operatorname{Spec} of the ring map S \to \mathcal{R}_0 obtained from S \to R composed with projection onto the degree-zero part equals f; thus \theta is a morphism over \operatorname{Spec} S. Second, isFrameOn: for every n > 0 and every \sigma \in \mathcal{R}_n, the section \iota_n(\sigma) satisfies the project predicate IsFrameOn on the open set \theta^{-1}(D_+(\sigma)), the assertion that \iota_n(\sigma) frames L^{\otimes n} there. Third, appLE_awayToSection_smul: for n > 0, \sigma \in \mathcal{R}_n, k \in \mathbb{N} and s \in \mathcal{R}_{kn}, write U = \theta^{-1}(D_+(\sigma)) and let \theta^{\#}(s/\sigma^k) \in \Gamma(U, \mathcal{O}_X) be the pullback along \theta of the section of \mathcal{O}_{\operatorname{Proj}\mathcal{R}} on D_+(\sigma) given by the homogeneous localisation s/\sigma^k; then \theta^{\#}(s/\sigma^k) \cdot \iota_{kn}(\sigma^k)|_U = \iota_{kn}(s)|_U in \Gamma(U, L^{\otimes kn}), where \sigma^k is taken in \mathcal{R}_{kn}.
No linearity or multiplicativity of \iota is part of this structure; that is the content of the companion predicate IsSectionRing, which requires each \iota_n to be bijective and additive, S-semilinear through f, unital, and multiplicative for the tensor-power isomorphisms L^{\otimes m} \otimes L^{\otimes n} \cong L^{\otimes (m+n)}.
Relation to Mathlib
Built on Mathlib's \operatorname{Proj} of a graded algebra (Proj.toSpecZero, Proj.basicOpen, Proj.awayToSection, HomogeneousLocalization.Away.mk, GradedRing.projZeroRingHom'); Mathlib has no predicate characterising a morphism to \operatorname{Proj} in terms of a section ring of a line bundle, so IsCanonicalToProj is the project's own notion.
Where it is used
These predicates belong to the project's scheme-theoretic infrastructure for presenting a scheme as the \operatorname{Proj} of a graded ring of sections of a line bundle: IsSectionRing records that a graded algebra is such a section ring, and IsCanonicalToProj pins down the morphism to \operatorname{Proj} that the sections induce.
References
- R. Hartshorne, Algebraic Geometry, Graduate Texts in Mathematics 52, Springer, 1977, Chapter II, §§2, 5, 7
- A. Grothendieck and J. Dieudonné, Éléments de géométrie algébrique II, Publ. Math. IHÉS 8 (1961), §§2–4
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 37 lines
- 5 declarations
- used in the statements of 17 theorems and imported by 18 proofs
- imports 1 definition modules
Source file: Definitions/Def_AlgebraicGeometry_GradedOAlgebraToProj.lean
Imported by
- no other definition module
Declarations
- structure
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj - field
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.R - field
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.comp_toSpecZero - field
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.isFrameOn - field
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.appLE_awayToSection_smul
Source
import Mathlib import Definitions.Def_AlgebraicGeometry_GradedOAlgebraSectionRing set_option autoImplicit false universe u open CategoryTheory MonoidalCategory Opposite HomogeneousLocalization noncomputable section namespace AlgebraicGeometry.GradedOAlgebra open AlgebraicGeometry.Scheme.Modules variable {S : Type u} [CommRing S] {X : Scheme.{u}} structure IsCanonicalToProj (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, ⊤)) (θ : X ⟶ Proj 𝓡) : Prop where comp_toSpecZero : θ ≫ Proj.toSpecZero 𝓡 ≫ Spec.map (CommRingCat.ofHom ((GradedRing.projZeroRingHom' 𝓡).comp (algebraMap S R))) = f isFrameOn : ∀ (n : ℕ), 0 < n → ∀ σ : 𝓡 n, IsFrameOn (ι n σ) (θ ⁻¹ᵁ Proj.basicOpen 𝓡 (σ : R)) appLE_awayToSection_smul : ∀ (n : ℕ), 0 < n → ∀ (σ : 𝓡 n) (k : ℕ) (s : 𝓡 (k • n)), (θ.appLE (Proj.basicOpen 𝓡 (σ : R)) (θ ⁻¹ᵁ Proj.basicOpen 𝓡 (σ : R)) le_rfl (Proj.awayToSection 𝓡 (σ : R) (Away.mk 𝓡 σ.2 k (s : R) s.2))) • (L.tensorPow (k • n)).presheaf.map (homOfLE (le_top : θ ⁻¹ᵁ Proj.basicOpen 𝓡 (σ : R) ≤ ⊤)).op (ι (k • n) ⟨(σ : R) ^ k, SetLike.pow_mem_graded k σ.2⟩) = (L.tensorPow (k • n)).presheaf.map (homOfLE (le_top : θ ⁻¹ᵁ Proj.basicOpen 𝓡 (σ : R) ≤ ⊤)).op (ι (k • n) s) end AlgebraicGeometry.GradedOAlgebra end
Statements phrased using this module (17)
- Base change of the canonical morphism to Proj
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.comp_map_eq_comp6 below · depth 35 - Canonical morphism to Proj of a section ring is an isomorphism
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.isIso11 below · depth 35 - Existence of the canonical morphism to Proj of a section ring
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.exists_isCanonicalToProj7 below · depth 35 - Canonical morphism to Proj under base change
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.comp_of_commSq1 below · depth 36 - Composing a canonical morphism to Proj with Proj of a graded map
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.comp_projMap0 below · depth 36 - The canonical morphism to Proj has dense image
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.denseRange2 below · depth 36 - Uniqueness of canonical morphisms to Proj from chart preimages
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.eq_of_preimage_basicOpen_eq0 below · depth 36 - Empty chart forces nilpotence of a homogeneous section
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.exists_pow_eq_zero_of_preimage_basicOpen_eq_bot1 below · depth 36 - Sections vanishing on X_σ are σ-torsion
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.exists_pow_mul_eq_zero_of_map_eq_zero2 below · depth 36 - Functions on X_σ are ratios t/σ^k
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.exists_smul_map_pow_eq_map_of_section5 below · depth 36 - Canonical morphism to Proj is an isomorphism over D₊(τ)
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.isIso_morphismRestrict_basicOpen_of_isAffineOpen7 below · depth 36 - Base change: equal chart preimages and pulled-back frames
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.preimage_basicOpen_comp_projMap_eq4 below · depth 36 - Affine charts of the canonical morphism at a presenting section
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.preimage_basicOpen_eq_preimage_of_projPresentation_of_isClosedImmersion2 below · depth 36 - The canonical morphism to Proj is universally closed
AlgebraicGeometry.GradedOAlgebra.IsCanonicalToProj.universallyClosed0 below · depth 36 - Dehomogenisation at a degree-one frame of a section ring
AlgebraicGeometry.GradedOAlgebra.IsSectionRing.exists_ringHom_smul_map_pow_eq1 below · depth 36 - Degree-one frames on a finite open cover of X
AlgebraicGeometry.Scheme.Modules.ClosedImmersionBySections.exists_iSup_eq_top_isFrameOn_of_isSectionRing0 below · depth 36 - Ratio of two frames is a unit
AlgebraicGeometry.Scheme.Modules.IsFrameOn.isUnit_of_isFrameOn_smul0 below · depth 36