Definitions/Def_AlgebraicGeometry_SquareZeroRelTangent.lean
Relative tangent points of a pointed scheme over a parameter base
The context is a field k, a scheme X with structure morphism x : X \to \operatorname{Spec} k, a section pt : \operatorname{Spec} k \to X of it, and a k-vector space V (carried as a left and right k-module with central scalars, so that the trivial square-zero extension k \oplus V is available). Write D_V = \operatorname{Spec}(k \oplus V), with \mathrm{toBase} : D_V \to \operatorname{Spec} k induced by k \to k \oplus V and \mathrm{basePoint} : \operatorname{Spec} k \to D_V induced by the projection k \oplus V \to k.
First, TangentPoints.zero produces the zero element of \mathrm{TangentPoints}\,x\,pt\,V — the set of k-morphisms v : D_V \to X with x \circ v = \mathrm{toBase} and v \circ \mathrm{basePoint} = pt — namely the constant morphism pt \circ \mathrm{toBase}; this uses the hypothesis x \circ pt = \mathrm{id}. The companion lemma records its underlying morphism.
Next, for f_0 : Z_0 \to \operatorname{Spec} k together with q_1 : Z \to Z_0, q_2 : Z \to D_V and a hypothesis hZ that the resulting square is cartesian (so Z is a chosen fibre product Z_0 \times_{\operatorname{Spec} k} D_V), SquareZero.zeroSection is the morphism Z_0 \to Z with components \mathrm{id}_{Z_0} and \mathrm{basePoint} \circ f_0; two lemmas (also in re-associated form) identify its composites with q_1 and q_2.
Finally, RelTangentPoints is the subtype of morphisms w : Z \to X satisfying x \circ w = \mathrm{toBase} \circ q_2 and w \circ \mathrm{zeroSection} = pt \circ f_0: first-order deformations, parametrised by Z_0, of the constant morphism Z_0 \to X at pt. Extensionality is subtype extensionality, and the two defining conditions are made available as named projections. The map const sends v \in \mathrm{TangentPoints}\,x\,pt\,V to the constant family v \circ q_2. Note that RelTangentPoints depends on the chosen cartesian square, not on a canonically constructed product.
Relation to Mathlib
Mathlib supplies the trivial square-zero extension TrivSqZeroExt and the pullback machinery for schemes; the functor-of-points description of V-valued tangent vectors at a k-point and its Z_0-parametrised relative version are the project's own notions.
Where it is used
These carriers belong to the deformation-theoretic infrastructure of the formalisation: they express first-order deformations of a constant morphism into a pointed k-scheme, in the form needed to compare two lifts of a morphism over a small surjection of Artinian local rings, and they are used alongside the relative Picard and Néron model material.
References
- M. Schlessinger, Functors of Artin rings, Transactions of the American Mathematical Society 130 (1968), 208–222
- S. Bosch, W. Lütkebohmert and M. Raynaud, Néron Models, Ergebnisse der Mathematik und ihrer Grenzgebiete 21, Springer, 1990
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 77 lines
- 11 declarations
- used in the statements of 76 theorems and imported by 80 proofs
- imports 1 definition modules
Source file: Definitions/Def_AlgebraicGeometry_SquareZeroRelTangent.lean
Declarations
- def
AlgebraicGeometry.TangentPoints.zero - theorem
AlgebraicGeometry.TangentPoints.zero_coe - def
AlgebraicGeometry.SquareZero.zeroSection - theorem
AlgebraicGeometry.SquareZero.zeroSection_fst - theorem
AlgebraicGeometry.SquareZero.zeroSection_snd - def
AlgebraicGeometry.RelTangentPoints - theorem
AlgebraicGeometry.RelTangentPoints.ext - theorem
AlgebraicGeometry.RelTangentPoints.comp_base - theorem
AlgebraicGeometry.RelTangentPoints.zeroSection_comp - def
AlgebraicGeometry.RelTangentPoints.const - theorem
AlgebraicGeometry.RelTangentPoints.const_coe
Source
import Mathlib import Definitions.Def_AlgebraicGeometry_SquareZeroDeformation set_option autoImplicit false noncomputable section universe u open CategoryTheory CategoryTheory.Limits namespace AlgebraicGeometry section variable {k : Type u} [Field k] {X : Scheme.{u}} def TangentPoints.zero (x : X ⟶ Spec (CommRingCat.of k)) (pt : Spec (CommRingCat.of k) ⟶ X) (hpt : pt ≫ x = 𝟙 (Spec (CommRingCat.of k))) (V : Type u) [AddCommGroup V] [Module k V] [Module kᵐᵒᵖ V] [IsCentralScalar k V] : TangentPoints x pt V := ⟨SquareZero.toBase k V ≫ pt, by rw [Category.assoc, hpt, Category.comp_id], by rw [SquareZero.basePoint_toBase_assoc]⟩ @[simp] theorem TangentPoints.zero_coe (x : X ⟶ Spec (CommRingCat.of k)) (pt : Spec (CommRingCat.of k) ⟶ X) (hpt : pt ≫ x = 𝟙 (Spec (CommRingCat.of k))) (V : Type u) [AddCommGroup V] [Module k V] [Module kᵐᵒᵖ V] [IsCentralScalar k V] : (TangentPoints.zero x pt hpt V).1 = SquareZero.toBase k V ≫ pt := rfl variable (x : X ⟶ Spec (CommRingCat.of k)) (pt : Spec (CommRingCat.of k) ⟶ X) (V : Type u) [AddCommGroup V] [Module k V] [Module kᵐᵒᵖ V] [IsCentralScalar k V] {Z₀ Z : Scheme.{u}} (f₀ : Z₀ ⟶ Spec (CommRingCat.of k)) (q₁ : Z ⟶ Z₀) (q₂ : Z ⟶ SquareZero.spec k V) (hZ : IsPullback q₁ q₂ f₀ (SquareZero.toBase k V)) def SquareZero.zeroSection : Z₀ ⟶ Z := hZ.lift (𝟙 Z₀) (f₀ ≫ SquareZero.basePoint k V) (by rw [Category.id_comp, Category.assoc, SquareZero.basePoint_toBase, Category.comp_id]) @[reassoc (attr := simp)] theorem SquareZero.zeroSection_fst : SquareZero.zeroSection V f₀ q₁ q₂ hZ ≫ q₁ = 𝟙 Z₀ := hZ.lift_fst _ _ _ @[reassoc (attr := simp)] theorem SquareZero.zeroSection_snd : SquareZero.zeroSection V f₀ q₁ q₂ hZ ≫ q₂ = f₀ ≫ SquareZero.basePoint k V := hZ.lift_snd _ _ _ def RelTangentPoints : Type u := { w : Z ⟶ X // w ≫ x = q₂ ≫ SquareZero.toBase k V ∧ SquareZero.zeroSection V f₀ q₁ q₂ hZ ≫ w = f₀ ≫ pt } namespace RelTangentPoints variable {x pt V f₀ q₁ q₂ hZ} @[ext] theorem ext {w w' : RelTangentPoints x pt V f₀ q₁ q₂ hZ} (h : w.1 = w'.1) : w = w' := Subtype.ext h theorem comp_base (w : RelTangentPoints x pt V f₀ q₁ q₂ hZ) : w.1 ≫ x = q₂ ≫ SquareZero.toBase k V := w.2.1 theorem zeroSection_comp (w : RelTangentPoints x pt V f₀ q₁ q₂ hZ) : SquareZero.zeroSection V f₀ q₁ q₂ hZ ≫ w.1 = f₀ ≫ pt := w.2.2 variable (x pt V f₀ q₁ q₂ hZ) in def const (v : TangentPoints x pt V) : RelTangentPoints x pt V f₀ q₁ q₂ hZ := ⟨q₂ ≫ v.1, by rw [Category.assoc, v.2.1], by rw [SquareZero.zeroSection_snd_assoc, v.2.2]⟩ @[simp] theorem const_coe (v : TangentPoints x pt V) : (const x pt V f₀ q₁ q₂ hZ v).1 = q₂ ≫ v.1 := rfl end RelTangentPoints end end AlgebraicGeometry end
Statements phrased using this module (76)
- Endomorphism lifts to a regluing iff its Kodaira–Spencer obstruction vanishes
GoodReductionJacobian.BareDeformation.exists_comp_eq_comp_iff_map_tmul_sub_eq_zero_of_isRegluingBy_of_hom_bare78 below · depth 30 - Isomorphic regluings have cohomologous tangent cocycles
GoodReductionJacobian.BareDeformation.exists_d_eq_sub_of_isIso_of_isTangentCoordsOfPairAt_bare20 below · depth 30 - Bare deformations are regluings carrying a cocycle tangent class
GoodReductionJacobian.BareDeformation.exists_isRegluingBy_exists_isTangentCoordsOfPairAt_of_bareDeformation_bare31 below · depth 30 - Regluing a bare deformation along a Čech tangent cocycle
GoodReductionJacobian.BareDeformation.exists_isRegluingBy_isTangentCoordsOfPairAt_bare144 below · depth 30 - Tangent class of a base-changed reglued bare deformation
GoodReductionJacobian.BareDeformation.exists_isRegluingBy_isTangentCoordsOfPairAt_comp_of_isPullback_ringHom_bare5 below · depth 30 - Regluings with cohomologous tangent cocycles give isomorphic deformations
GoodReductionJacobian.BareDeformation.isIso_of_isRegluingBy_of_exists_d_eq_sub_bare22 below · depth 30 - Point-derivation form of tangent coordinates of a pair of lifts
AlgebraicGeometry.SmallExtension.exists_pointDerivations_isTangentCoordsOfPairAt_of_flat6 below · depth 31 - Additivity of pair tangent coordinates along three lifts
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAt_add7 below · depth 31 - Tangent cochain of a re-glued deformation is a cocycle
GoodReductionJacobian.BareDeformation.d_one_apply_eq_zero_of_isRegluingBy_of_isTangentCoordsOfPairAt_bare17 below · depth 31 - Cohomologous tangent cocycles give compatible chart automorphisms
GoodReductionJacobian.BareDeformation.exists_chartIso_comp_eq_of_isRegluingBy_of_exists_d_eq_sub20 below · depth 31 - Isomorphic regluings give compatible chart automorphisms
GoodReductionJacobian.BareDeformation.exists_chartIso_comp_eq_of_isRegluingBy_of_isIso1 below · depth 31 - Lifting an endomorphism to a re-glued deformation: obstruction criterion
GoodReductionJacobian.BareDeformation.exists_comp_eq_comp_iff_add_map_tmul_sub_eq_zero_of_isRegluingBy_of_local_lifts_bare77 below · depth 31 - Compatible chart automorphisms make the two tangent cocycles cohomologous
GoodReductionJacobian.BareDeformation.exists_d_eq_sub_of_chartIso_comp_eq_of_isTangentCoordsOfPairAt17 below · depth 31 - Gluing deformation charts along overlap automorphisms
GoodReductionJacobian.BareDeformation.exists_glued_scheme_of_overlap_isos3 below · depth 31 - Functoriality of tangent coordinates under a semilinear self-base-change
GoodReductionJacobian.BareDeformation.exists_isTangentCoordsOfPairAt_comp_of_isPullback_ringHom_of_comp_eq_of_over_over_bare3 below · depth 31 - Overlap automorphism realising a tangent cocycle component
GoodReductionJacobian.BareDeformation.exists_overlap_iso_isTangentCoordsOfPairAt_bare6 below · depth 31 - Point-derivation tangent coordinates for the overlaps of a regluing
GoodReductionJacobian.BareDeformation.exists_pointDerivations_isTangentCoordsOfPairAt_of_isRegluingBy_bare15 below · depth 31 - Commutative group law on a smooth cartesian lift over B
GoodReductionJacobian.BareDeformation.exists_relativeGroupLaw_of_isPullback_of_smooth136 below · depth 31 - Triple-overlap cocycle identity for the regluing automorphisms
GoodReductionJacobian.BareDeformation.exists_restrict_comp_eq_of_isTangentCoordsOfPairAt_of_d_eq_zero_bare18 below · depth 31 - Naturality of translation to the unit in the parameter
AlgebraicGeometry.RelTangentPoints.comp_translate_eq_translate_comp0 below · depth 32 - Relative tangent points factor through open neighbourhoods
AlgebraicGeometry.RelTangentPoints.existsUnique_comp_openInclusion_eq0 below · depth 32 - Gluing an ordered affine cover along point-fixing overlap automorphisms
AlgebraicGeometry.Scheme.OrderedAffineCover.exists_glued_of_overlap_isos_of_forall_base_eq0 below · depth 32 - Tangent fields of pairs add on the doubled thickening
AlgebraicGeometry.SmallExtension.IsTangentOfPair.exists_comp_map_fst_eq_and_isTangentOfPair_comp_map_add1 below · depth 32 - Tangent coordinates determine the second member of a deformation pair
AlgebraicGeometry.SmallExtension.eq_of_isTangentCoordsOfPairAt_of_isTangentCoordsOfPairAt5 below · depth 32 - Unique tangent morphism attached to two lifts, flat case
AlgebraicGeometry.SmallExtension.existsUnique_isTangentOfPair_of_flat2 below · depth 32 - Existence of tangent coordinates at the unit for a pair
AlgebraicGeometry.SmallExtension.exists_isTangentCoordsOfPairAt4 below · depth 32 - Point derivations at the unit are tangent coordinates of deformations
AlgebraicGeometry.SmallExtension.exists_isTangentCoordsOfPairAt_of_pointDerivations4 below · depth 32 - Tangent coordinates across a commuting square of lifts
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAt_add_eq_add_of_specMap_comp_eq12 below · depth 32 - Naturality of pair tangent coordinates under flat algebra maps
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAt_comp_of_flat4 below · depth 32 - Tangent maps into an affine chart versus point derivations
AlgebraicGeometry.SmallExtension.mem_pointDerivations_tangentCoords_and_injective_and_surjective0 below · depth 32 - Endomorphism of an open fixing a nilpotent thickening's reduction is pointwise trivial
GoodReductionJacobian.BareDeformation.base_eq_of_morphismRestrict_comp_eq0 below · depth 32 - τ-twisted obstruction cochain of local lifts is a cocycle
GoodReductionJacobian.BareDeformation.d_twisted_hom_obstruction_cochain_eq_zero_of_isRegluingBy_bare12 below · depth 32 - Coboundary criterion for lifting an endomorphism to a reglued deformation
GoodReductionJacobian.BareDeformation.exists_comp_eq_comp_iff_forall_mem_range_d_of_isRegluingBy_of_twisted_local_lifts_bare32 below · depth 32 - Comparison map, cartesian square and smoothness for a glued chart scheme
GoodReductionJacobian.BareDeformation.exists_comparison_isPullback_smooth_of_glued0 below · depth 32 - Chartwise lifts and their τ-twisted obstruction cochain
GoodReductionJacobian.BareDeformation.exists_local_lifts_twisted_hom_obstruction_cochain_of_isRegluingBy_bare32 below · depth 32 - Four-term re-gluing identity for the endomorphism obstruction cocycle
GoodReductionJacobian.BareDeformation.exists_orderedAffineCover_d_eq_unitPullback_hom_obstruction_cocycle_sub_of_isRegluingBy_bare33 below · depth 32 - Pair tangent field transported by a cartesian self-map
GoodReductionJacobian.BareDeformation.isTangentOfPair_specMap_comp_of_isPullback_ringHom_of_comp_eq_bare0 below · depth 32 - Zero section of a tangent field of a pair recovers u
AlgebraicGeometry.SmallExtension.IsTangentOfPair.zeroSection_comp_eq0 below · depth 33 - Every tangent field over T' is tangent to a unique lift
AlgebraicGeometry.SmallExtension.existsUnique_comp_eq_and_isTangentOfPair_of_flat_of_comp_eq2 below · depth 33 - Naturality of pair tangent coordinates under flat chart change
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAtVia_comp_of_flat4 below · depth 33 - Chart-wise lifts of an endomorphism into a reglued deformation
GoodReductionJacobian.BareDeformation.exists_chart_lift_comp_eq_of_isRegluingBy_bare31 below · depth 33 - Regluing law: four-term obstruction combination is a coboundary
GoodReductionJacobian.BareDeformation.exists_d_eq_unitPullback_hom_obstruction_cocycle_sub_baseChange_of_local_lifts_factor_bare31 below · depth 33 - Refinement of a cover on which local lifts factor
GoodReductionJacobian.BareDeformation.exists_orderedAffineCover_local_lifts_factor_bare0 below · depth 33 - Affine frame for a bare deformation and its residue fibre
GoodReductionJacobian.BareDeformation.exists_orderedAffineCover_unit_chart_frame_bare2 below · depth 33 - Separability element trivialises the obstruction cocycle
GoodReductionJacobian.BareDeformation.exists_pointDerivations_forall_map_hom_obstruction_cocycle_add_sub_eq_zero_of_separabilityElement_bare45 below · depth 33 - Λ-action on the special fibre of a bare deformation
GoodReductionJacobian.BareDeformation.exists_specialFibre_act_comp_eq_of_act_bare0 below · depth 33 - Infinitesimal rigidity: a tangent field constant at one thickened point
AlgebraicGeometry.RelTangentPoints.eq_comp_zeroSection_of_thickenedPoint_comp_eq2 below · depth 34 - Lifts agreeing modulo I inject into tangent fields
AlgebraicGeometry.SmallExtension.exists_injective_isTangentOfPair_of_flat5 below · depth 34 - Transporting pair tangent coordinates to a subchart of a local lift
GoodReductionJacobian.BareDeformation.exists_algHom_isTangentCoordsOfPairAt_regluing_of_local_lift_factor_bare10 below · depth 34 - Refining four chart factorisations to a common overlap
GoodReductionJacobian.BareDeformation.exists_factor_inf_of_local_lifts_factor_bare0 below · depth 34 - Tangent coordinates for a pair of local lifts
GoodReductionJacobian.BareDeformation.exists_isTangentCoordsOfPairAt_local_lifts_factor_bare6 below · depth 34 - Untwisting the twisted lift coordinates on a smaller affine open
GoodReductionJacobian.BareDeformation.exists_isTangentCoordsOfPairAt_local_lifts_untwist_bare17 below · depth 34 - Tangent coordinates of a pair transported through a regluing chart
GoodReductionJacobian.BareDeformation.isTangentCoordsOfPairAt_comp_regluing_chart_of_comp_incl_bare4 below · depth 34 - Chartwise lift of ψ on sections over the residue field
GoodReductionJacobian.BareDeformation.map_app_app_eq_map_app_of_specMap_comp_eq_of_local_lift_factor_bare0 below · depth 34 - Obstruction class of a composite endomorphism
GoodReductionJacobian.BareDeformation.map_hom_obstruction_cocycle_comp_eq_add_map_tmul_of_local_lifts_bare35 below · depth 34 - Additivity of the obstruction class under pointwise product
GoodReductionJacobian.BareDeformation.map_hom_obstruction_cocycle_eq_add_of_local_lifts_mul_bare13 below · depth 34 - Constant parametrised tangent vectors when Γ(Z₀,𝒪)=k
AlgebraicGeometry.RelTangentPoints.const_bijective_of_bijective_of_compactSpace1 below · depth 35 - Tangent coordinates determine the deformation v
AlgebraicGeometry.SmallExtension.eq_of_isTangentCoordsOfPairAtVia_of_isTangentCoordsOfPairAtVia5 below · depth 35 - Existence of tangent coordinates for a pair, via an open
AlgebraicGeometry.SmallExtension.exists_isTangentCoordsOfPairAtVia4 below · depth 35 - Additivity of via-tangent coordinates along a chain of lifts
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAtVia_add7 below · depth 35 - Tangent coordinates are stable under postcomposition with ψ
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAtVia_comp_of_homOfLE_comp_eq0 below · depth 35 - Tangent coordinates descend along a cartesian square over a monomorphism
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAtVia_of_isPullback_of_comp_mono1 below · depth 35 - Additivity of pair tangent coordinates along a commutative group law
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAt_mul_of_isCommutative11 below · depth 35 - Isomorphic regluings have cohomologous tangent cocycles
GoodReductionJacobian.BareDeformation.exists_d_eq_sub_of_isIso_of_isTangentCoordsOfPairAt20 below · depth 35 - Obstruction cochain of a composite endomorphism: coboundary identity
GoodReductionJacobian.BareDeformation.exists_d_eq_unitPullback_hom_obstruction_cocycle_comp_sub_map_tmul_sub_baseChange_of_local_lifts_factor_bare33 below · depth 35 - Re-gluing a bare deformation by a tangent 1-cocycle
GoodReductionJacobian.BareDeformation.exists_isRegluingBy_isTangentCoordsOfPairAt144 below · depth 35 - Kodaira–Spencer linearity for re-glued bare deformations
GoodReductionJacobian.BareDeformation.exists_linearMap_pointDerivations_forall_isShiftBy247 below · depth 35 - Exponentiating a point derivation into a deformation of u
AlgebraicGeometry.SmallExtension.exists_isTangentCoordsOfPairAtVia_of_pointDerivations4 below · depth 36 - Left translation invariance of pair tangent coordinates
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAt_mul_left0 below · depth 36 - Tangent coordinates comparing a composite lift with a factored lift
GoodReductionJacobian.BareDeformation.exists_isTangentCoordsOfPairAt_comp_local_lifts_factor_bare6 below · depth 36 - Overlap automorphisms realising a prescribed tangent cochain
GoodReductionJacobian.BareDeformation.exists_overlap_iso_isTangentCoordsOfPairAt6 below · depth 36 - Triple-overlap identity for the chart automorphisms of a cocycle
GoodReductionJacobian.BareDeformation.exists_restrict_comp_eq_of_isTangentCoordsOfPairAt_of_d_eq_zero18 below · depth 36 - Re-gluing by c+rc' shifts the formal group by w+rw'
GoodReductionJacobian.BareDeformation.isShiftBy_add_smul_of_isRegluingBy_of_isTangentCoordsOfPairAt_add_smul241 below · depth 36 - Shift class of a regluing depends only on the Čech class
GoodReductionJacobian.BareDeformation.isShiftBy_of_isShiftBy_of_isRegluingBy_of_exists_d_eq_sub100 below · depth 36 - Tangent coordinates of an affine combination of two endomorphisms
AlgebraicGeometry.SmallExtension.isTangentCoordsOfPairAt_add_smul_of_apply_eq_add_mul_sub5 below · depth 37 - Cohomologous tangent cocycles give isomorphic regluings
GoodReductionJacobian.BareDeformation.isIso_of_isRegluingBy_of_exists_d_eq_sub22 below · depth 37