Definitions/Def_AlgebraicGeometry_AdicThickening.lean
Adic thickenings of a scheme over an affine base
Fix a commutative ring R, an ideal I \subseteq R, a scheme X and a morphism f \colon X \to \operatorname{Spec} R. For each natural number n, adicThickeningBase I n is the morphism \operatorname{Spec}(R/I^{n+1}) \to \operatorname{Spec} R obtained by applying \operatorname{Spec} to the quotient map R \to R/I^{n+1} (note the index shift: the n-th stage uses the (n+1)-st power of I). The scheme adicThickening f I n is defined as Mathlib's chosen fibre product X \times_{\operatorname{Spec} R} \operatorname{Spec}(R/I^{n+1}), written X_n below, with adicThickeningι f I n the first projection \iota_n \colon X_n \to X and adicThickeningToBase f I n the second projection X_n \to \operatorname{Spec}(R/I^{n+1}); adicThickeningι_comp records the pullback square, namely that \iota_n followed by f equals the second projection followed by adicThickeningBase I n. Since R \to R/I^{n+1} is surjective, adicThickeningBase I n is a closed immersion, and isClosedImmersion_adicThickeningι registers as an instance that \iota_n is a closed immersion, being a pullback of one.
The comparison between consecutive stages comes from the surjection R/I^{n+2} \to R/I^{n+1} induced by I^{n+2} \subseteq I^{n+1}: adicThickeningBase_succ_comp says that \operatorname{Spec} of this surjection followed by adicThickeningBase I (n+1) is adicThickeningBase I n, and adicThickeningTransition f I n is the resulting morphism \tau_n \colon X_n \to X_{n+1} determined by the universal property, characterised by the two triangles adicThickeningTransition_ι (\tau_n followed by \iota_{n+1} is \iota_n) and adicThickeningTransition_toBase (\tau_n followed by the projection to \operatorname{Spec}(R/I^{n+2}) is the projection of X_n followed by \operatorname{Spec} of the quotient map). Three further lemmas, adicThickening_def, adicThickeningι_def and adicThickeningToBase_def, restate the definitions in terms of pullback, pullback.fst and pullback.snd. The module introduces vocabulary only: the tower X_0 \hookrightarrow X_1 \hookrightarrow \cdots \hookrightarrow X of closed subschemes cut out by the powers of I\mathcal{O}_X.
Relation to Mathlib
Built directly on Mathlib's fibre products of schemes and on IsClosedImmersion; Mathlib has no packaged notion of the I-adic thickening tower of a scheme over \operatorname{Spec} R, and this module supplies it together with the transition morphisms.
Where it is used
These thickenings provide the standard setting in which coherent sheaves, line bundles and sections on a scheme over an I-adically complete base are compared with compatible systems on the closed subschemes X_n, as in the theorem on formal functions and Grothendieck's existence theorem; the tower is used throughout the algebraic-geometry layer of the formalisation.
References
- A. Grothendieck, Éléments de géométrie algébrique III: Étude cohomologique des faisceaux cohérents, Première partie, Publ. Math. IHÉS 11 (1961), 5–167 (§§4.1, 5.1)
- R. Hartshorne, Algebraic Geometry, Graduate Texts in Mathematics 52, Springer, 1977
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 67 lines
- 13 declarations
- used in the statements of 19 theorems and imported by 23 proofs
- imports 0 definition modules
Source file: Definitions/Def_AlgebraicGeometry_AdicThickening.lean
Declarations
- abbrev
AlgebraicGeometry.adicThickeningBase - def
AlgebraicGeometry.adicThickening - def
AlgebraicGeometry.adicThickeningι - def
AlgebraicGeometry.adicThickeningToBase - theorem
AlgebraicGeometry.adicThickeningι_comp - theorem
AlgebraicGeometry.adicThickeningBase_succ_comp - def
AlgebraicGeometry.adicThickeningTransition - theorem
AlgebraicGeometry.adicThickeningTransition_ι - theorem
AlgebraicGeometry.adicThickeningTransition_toBase - instance
AlgebraicGeometry.isClosedImmersion_adicThickeningι - theorem
AlgebraicGeometry.adicThickening_def - theorem
AlgebraicGeometry.adicThickeningι_def - theorem
AlgebraicGeometry.adicThickeningToBase_def
Source
import Mathlib.AlgebraicGeometry.Pullbacks ↗ import Mathlib.AlgebraicGeometry.Morphisms.ClosedImmersion ↗ import Mathlib.RingTheory.Ideal.Quotient.Operations ↗ set_option autoImplicit false noncomputable section universe u namespace AlgebraicGeometry open CategoryTheory CategoryTheory.Limits variable {R : Type u} [CommRing R] {X : Scheme.{u}} (f : X ⟶ Spec (.of R)) (I : Ideal R) abbrev adicThickeningBase (n : ℕ) : Spec (.of (R ⧸ I ^ (n + 1))) ⟶ Spec (.of R) := Spec.map (CommRingCat.ofHom (Ideal.Quotient.mk (I ^ (n + 1)))) def adicThickening (n : ℕ) : Scheme.{u} := pullback f (adicThickeningBase I n) def adicThickeningι (n : ℕ) : adicThickening f I n ⟶ X := pullback.fst f (adicThickeningBase I n) def adicThickeningToBase (n : ℕ) : adicThickening f I n ⟶ Spec (.of (R ⧸ I ^ (n + 1))) := pullback.snd f (adicThickeningBase I n) theorem adicThickeningι_comp (n : ℕ) : adicThickeningι f I n ≫ f = adicThickeningToBase f I n ≫ adicThickeningBase I n := pullback.condition theorem adicThickeningBase_succ_comp (n : ℕ) : Spec.map (CommRingCat.ofHom (Ideal.Quotient.factor (Ideal.pow_le_pow_right (Nat.le_succ (n + 1)) : I ^ (n + 1 + 1) ≤ I ^ (n + 1)))) ≫ adicThickeningBase I (n + 1) = adicThickeningBase I n := by rw [adicThickeningBase, adicThickeningBase, ← Spec.map_comp, ← CommRingCat.ofHom_comp, Ideal.Quotient.factor_comp_mk] def adicThickeningTransition (n : ℕ) : adicThickening f I n ⟶ adicThickening f I (n + 1) := pullback.lift (adicThickeningι f I n) (adicThickeningToBase f I n ≫ Spec.map (CommRingCat.ofHom (Ideal.Quotient.factor (Ideal.pow_le_pow_right (Nat.le_succ (n + 1)) : I ^ (n + 1 + 1) ≤ I ^ (n + 1))))) (by rw [adicThickeningι_comp, Category.assoc, adicThickeningBase_succ_comp]) @[simp] theorem adicThickeningTransition_ι (n : ℕ) : adicThickeningTransition f I n ≫ adicThickeningι f I (n + 1) = adicThickeningι f I n := by rw [adicThickeningTransition]; exact pullback.lift_fst _ _ _ theorem adicThickeningTransition_toBase (n : ℕ) : adicThickeningTransition f I n ≫ adicThickeningToBase f I (n + 1) = adicThickeningToBase f I n ≫ Spec.map (CommRingCat.ofHom (Ideal.Quotient.factor (Ideal.pow_le_pow_right (Nat.le_succ (n + 1)) : I ^ (n + 1 + 1) ≤ I ^ (n + 1)))) := by rw [adicThickeningTransition]; exact pullback.lift_snd _ _ _ instance isClosedImmersion_adicThickeningι (n : ℕ) : IsClosedImmersion (adicThickeningι f I n) := by have : IsClosedImmersion (adicThickeningBase I n) := IsClosedImmersion.spec_of_surjective _ Ideal.Quotient.mk_surjective exact MorphismProperty.pullback_fst _ _ this theorem adicThickening_def (n : ℕ) : adicThickening f I n = pullback f (adicThickeningBase I n) := rfl theorem adicThickeningι_def (n : ℕ) : adicThickeningι f I n = pullback.fst f (adicThickeningBase I n) := rfl theorem adicThickeningToBase_def (n : ℕ) : adicThickeningToBase f I n = pullback.snd f (adicThickeningBase I n) := rfl end AlgebraicGeometry end
Statements phrased using this module (19)
- Compatible group laws on all 𝔪-adic thickenings
GoodReductionJacobian.exists_forall_relativeGroupLaw_adicThickening_one_eq_of_isNoetherianRing_of_isClopen235 below · depth 33 - Group law on A/R from laws on its I-adic thickenings
GoodReductionJacobian.exists_relativeGroupLaw_one_eq_of_forall_relativeGroupLaw_adicThickening_of_isAdicComplete115 below · depth 33 - Pushforwards of invertible modules along adic thickenings
AlgebraicGeometry.OModulePresheaf.exists_affHom_pushforward_ofModules_adicThickening_surjective_ker_eq_pow_smul_top7 below · depth 34 - Invertible module from invertible reductions on adic thickenings
AlgebraicGeometry.Scheme.Modules.IsInvertible.exists_forall_pullback_iso_of_affHom_pushforward_adicThickening_surjective_ker_eq_pow_smul_top24 below · depth 34 - Transporting compatible line bundles across adic thickenings
AlgebraicGeometry.exists_isInvertible_adicThickening_forall_nonempty_pullback_iso_of_forall_pullback_algebraMap_quotient0 below · depth 34 - Algebraising the inversion of a compatible tower of group laws
GoodReductionJacobian.exists_inv_hom_forall_comp_eq_of_forall_relativeGroupLaw_adicThickening_of_isAdicComplete111 below · depth 34 - Algebraisation of a compatible tower of group laws
GoodReductionJacobian.exists_mul_hom_forall_lift_comp_eq_of_forall_relativeGroupLaw_adicThickening_of_isAdicComplete111 below · depth 34 - Group axioms over a complete base from levelwise laws
GoodReductionJacobian.lift_comp_mul_eq_of_forall_relativeGroupLaw_adicThickening_of_isAdicComplete4 below · depth 34 - Rank-one local freeness from invertible reductions modulo Iⁿ⁺¹
AlgebraicGeometry.OModulePresheaf.exists_basicOpen_bijective_smul_res_of_affHom_pushforward_adicThickening_of_le_asIdeal3 below · depth 35 - Gluing a line bundle from an affine datum over adic thickenings
AlgebraicGeometry.Scheme.Modules.IsInvertible.exists_forall_pullback_iso_of_forall_bijective_smul_res_of_affHom_pushforward20 below · depth 35 - Compatible formal isomorphisms of invertible modules are algebraic
AlgebraicGeometry.Scheme.Modules.IsInvertible.nonempty_iso_of_compatible_pullback_adicThickening_iso83 below · depth 35 - Uniqueness of morphisms agreeing on all adic thickenings
AlgebraicGeometry.eq_of_forall_adicThickening_comp_eq_of_isAdicComplete_of_isClosedImmersion_proj2 below · depth 35 - Algebraisation of compatible morphisms between adic thickenings
AlgebraicGeometry.existsUnique_hom_forall_adicThickening_comp_eq_of_isAdicComplete_of_isClosedImmersion_proj110 below · depth 35 - Unit of the adic thickening adjunction: surjectivity and kernel Iⁿ⁺¹Γ(U,N)
AlgebraicGeometry.Scheme.Modules.IsInvertible.unit_app_adicThickening_surjective_and_eq_zero_iff_mem_pow_smul_top7 below · depth 36 - Algebraisation of a compatible system of closed subschemes of adic thickenings
AlgebraicGeometry.exists_idealSheafData_forall_comap_adicThickening_eq_of_isAdicComplete_of_isClosedImmersion_proj102 below · depth 36 - Graphs of compatible morphisms of adic thickenings are closed immersions
AlgebraicGeometry.isClosedImmersion_and_comap_ker_eq_ker_of_adicThickening_graph1 below · depth 36 - Traces on adic thickenings of a closed subscheme cut out by graphs
AlgebraicGeometry.isIso_and_adicThickening_comp_eq_of_comap_eq_ker_of_comp_eq0 below · depth 36 - Adic thickenings detect isomorphisms of projective R-schemes
AlgebraicGeometry.isIso_of_forall_isIso_adicThickening_of_isAdicComplete_of_isClosedImmersion_proj0 below · depth 36 - Adic thickenings commute with fibre products
AlgebraicGeometry.isPullback_adicThickening_pullback0 below · depth 37