Definitions/Def_AlgebraicGeometry_SquareZeroDeformation.lean
Square-zero extensions, tangent points, deformations of the trivial bundle
Fix a field K and a K-module V (carried as a K-bimodule with central scalars, as Mathlib's TrivSqZeroExt requires). The ring K \oplus V with (a,v)(b,w) = (ab, aw+bv) is shown to be local: an element is a unit exactly when its first component is nonzero, and if that component vanishes then 1- the element is a unit. The scheme SquareZero.spec K V is \operatorname{Spec}(K\oplus V); toBase is the morphism to \operatorname{Spec} K induced by the structure map K \to K\oplus V, and basePoint the K-point induced by the projection K\oplus V \to K, so that basePoint followed by toBase is the identity — basePointOver records this point as an element of SchemeHomOver (𝟙 (Spec (CommRingCat.of K))) (toBase K V). A K-linear \varphi : V \to W induces the K-algebra map K\oplus V \to K\oplus W and hence specMap K φ : spec K W ⟶ spec K V, compatible with toBase and with the base points, contravariantly functorial in \varphi (\mathrm{id} to the identity, \psi \circ \varphi to specMap K φ preceded by specMap K ψ), and also packaged as a morphism over \operatorname{Spec} K.
For a scheme X with a morphism x : X \to \operatorname{Spec} K and a morphism pt : \operatorname{Spec} K \to X, TangentPoints x pt V is the subtype of morphisms v : \operatorname{Spec}(K\oplus V) \to X satisfying v followed by x equals toBase K V and basePoint K V followed by v equals pt; it is extensional in the underlying morphism and covariantly functorial in V by precomposition with specMap K φ.
For c : C \to \operatorname{Spec} K with a section \varepsilon, TrivialModDeformations c ε V is the subtype of those rigidified line bundles on C \times_{\operatorname{Spec} K} \operatorname{Spec}(K \oplus V) — invertible modules, trivialised along the section cut out by \varepsilon — whose pullback along basePointOver K V admits, on underlying modules only, an isomorphism with the unit module of RigidifiedLineBundle.unit (𝟙 (Spec (CommRingCat.of K))); the condition is the nonemptiness of a set of module isomorphisms, not a chosen one, and it ignores compatibility with the rigidifications. Functoriality in V is given by pullback along specMapOver K φ, the required base-point identity being supplied by postComp_specMapOver_basePointOver.
Relation to Mathlib
The algebra K\oplus V, its functoriality and the projection homomorphism are Mathlib's TrivSqZeroExt, TrivSqZeroExt.map and TrivSqZeroExt.fstHom; the local ring instance for it and all the scheme-level notions (the square-zero base, its points, V-valued tangent points, and deformations of the trivial rigidified line bundle) are the project's own, built on the project's relative Picard vocabulary.
Where it is used
These definitions supply the first-order (square-zero) test objects used when tangent spaces of the relative Picard functor and of related moduli of line bundles on curves over a field are analysed, in the Néron model and relative Picard infrastructure of the proof.
References
- S. Bosch, W. Lütkebohmert and M. Raynaud, Néron Models, Ergebnisse der Mathematik und ihrer Grenzgebiete 21, Springer, 1990
- B. Fantechi, L. Göttsche, L. Illusie, S. Kleiman, N. Nitsure and A. Vistoli, Fundamental Algebraic Geometry: Grothendieck's FGA Explained, Mathematical Surveys and Monographs 123, American Mathematical Society, 2005
- H. Darmon, F. Diamond and R. Taylor, Fermat's Last Theorem, in: Current Developments in Mathematics 1995, International Press, 1995, 1–154
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 154 lines
- 23 declarations
- used in the statements of 82 theorems and imported by 92 proofs
- imports 1 definition modules
Source file: Definitions/Def_AlgebraicGeometry_SquareZeroDeformation.lean
Declarations
- instance
AlgebraicGeometry.SquareZero.isLocalRing - instance
AlgebraicGeometry.SquareZero.isLocalRing' - abbrev
AlgebraicGeometry.SquareZero.spec - def
AlgebraicGeometry.SquareZero.toBase - def
AlgebraicGeometry.SquareZero.basePoint - theorem
AlgebraicGeometry.SquareZero.basePoint_toBase - def
AlgebraicGeometry.SquareZero.basePointOver - theorem
AlgebraicGeometry.SquareZero.basePointOver_coe - def
AlgebraicGeometry.SquareZero.specMap - theorem
AlgebraicGeometry.SquareZero.specMap_toBase - theorem
AlgebraicGeometry.SquareZero.basePoint_specMap - theorem
AlgebraicGeometry.SquareZero.specMap_id - theorem
AlgebraicGeometry.SquareZero.specMap_comp - def
AlgebraicGeometry.SquareZero.specMapOver - theorem
AlgebraicGeometry.SquareZero.specMapOver_coe - def
AlgebraicGeometry.TangentPoints - theorem
AlgebraicGeometry.TangentPoints.ext - def
AlgebraicGeometry.TangentPoints.map - theorem
AlgebraicGeometry.TangentPoints.map_coe - def
AlgebraicGeometry.RelPicard.TrivialModDeformations - theorem
AlgebraicGeometry.RelPicard.TrivialModDeformations.postComp_specMapOver_basePointOver - def
AlgebraicGeometry.RelPicard.TrivialModDeformations.map - theorem
AlgebraicGeometry.RelPicard.TrivialModDeformations.map_coe
Source
import Mathlib import Definitions.Def_AlgebraicGeometry_RelativePicardFunctor set_option autoImplicit false noncomputable section universe u open CategoryTheory CategoryTheory.Limits TrivSqZeroExt NeronModelInfra namespace AlgebraicGeometry namespace SquareZero variable (K : Type u) [Field K] variable (V : Type u) [AddCommGroup V] [Module K V] [Module Kᵐᵒᵖ V] [IsCentralScalar K V] instance isLocalRing : IsLocalRing (TrivSqZeroExt K V) := IsLocalRing.of_isUnit_or_isUnit_one_sub_self fun a => by by_cases h : a.fst = 0 · right rw [TrivSqZeroExt.isUnit_iff_isUnit_fst, TrivSqZeroExt.fst_sub, TrivSqZeroExt.fst_one, h, sub_zero] exact isUnit_one · left exact TrivSqZeroExt.isUnit_iff_isUnit_fst.mpr (Ne.isUnit h) instance isLocalRing' : IsLocalRing (CommRingCat.of (TrivSqZeroExt K V)) := SquareZero.isLocalRing K V abbrev spec : Scheme.{u} := Spec (CommRingCat.of (TrivSqZeroExt K V)) def toBase : spec K V ⟶ Spec (CommRingCat.of K) := Spec.map (CommRingCat.ofHom (algebraMap K (TrivSqZeroExt K V))) def basePoint : Spec (CommRingCat.of K) ⟶ spec K V := Spec.map (CommRingCat.ofHom (TrivSqZeroExt.fstHom K K V).toRingHom) @[reassoc (attr := simp)] theorem basePoint_toBase : basePoint K V ≫ toBase K V = 𝟙 _ := by rw [basePoint, toBase, ← Spec.map_comp, ← Spec.map_id] congr 1 def basePointOver : SchemeHomOver (𝟙 (Spec (CommRingCat.of K))) (toBase K V) := ⟨basePoint K V, basePoint_toBase K V⟩ @[simp] theorem basePointOver_coe : (basePointOver K V).1 = basePoint K V := rfl variable {V} variable {W : Type u} [AddCommGroup W] [Module K W] [Module Kᵐᵒᵖ W] [IsCentralScalar K W] variable {W' : Type u} [AddCommGroup W'] [Module K W'] [Module Kᵐᵒᵖ W'] [IsCentralScalar K W'] def specMap (φ : V →ₗ[K] W) : spec K W ⟶ spec K V := Spec.map (CommRingCat.ofHom (TrivSqZeroExt.map φ).toRingHom) @[reassoc (attr := simp)] theorem specMap_toBase (φ : V →ₗ[K] W) : specMap K φ ≫ toBase K V = toBase K W := by rw [specMap, toBase, toBase, ← Spec.map_comp] congr 1 refine CommRingCat.hom_ext (RingHom.ext fun a => ?_) change TrivSqZeroExt.map φ (algebraMap K _ a) = algebraMap K _ a exact (TrivSqZeroExt.map φ).commutes a @[reassoc (attr := simp)] theorem basePoint_specMap (φ : V →ₗ[K] W) : basePoint K W ≫ specMap K φ = basePoint K V := by rw [specMap, basePoint, basePoint, ← Spec.map_comp] congr 1 refine CommRingCat.hom_ext (RingHom.ext fun a => ?_) change (TrivSqZeroExt.map φ a).fst = a.fst exact TrivSqZeroExt.fst_map φ a theorem specMap_id : specMap K (LinearMap.id : V →ₗ[K] V) = 𝟙 _ := by rw [specMap, TrivSqZeroExt.map_id, ← Spec.map_id] rfl theorem specMap_comp (φ : V →ₗ[K] W) (ψ : W →ₗ[K] W') : specMap K (ψ ∘ₗ φ) = specMap K ψ ≫ specMap K φ := by rw [specMap, specMap, specMap, ← Spec.map_comp, TrivSqZeroExt.map_comp_map] rfl def specMapOver (φ : V →ₗ[K] W) : SchemeHomOver (toBase K W) (toBase K V) := ⟨specMap K φ, specMap_toBase K φ⟩ @[simp] theorem specMapOver_coe (φ : V →ₗ[K] W) : (specMapOver K φ).1 = specMap K φ := rfl end SquareZero section TangentPoints variable {K : Type u} [Field K] {X : Scheme.{u}} def TangentPoints (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] : Type u := { v : SquareZero.spec K V ⟶ X // v ≫ x = SquareZero.toBase K V ∧ SquareZero.basePoint K V ≫ v = pt } namespace TangentPoints variable {x : X ⟶ Spec (CommRingCat.of K)} {pt : Spec (CommRingCat.of K) ⟶ X} variable {V : Type u} [AddCommGroup V] [Module K V] [Module Kᵐᵒᵖ V] [IsCentralScalar K V] variable {W : Type u} [AddCommGroup W] [Module K W] [Module Kᵐᵒᵖ W] [IsCentralScalar K W] @[ext] theorem ext {v v' : TangentPoints x pt V} (h : v.1 = v'.1) : v = v' := Subtype.ext h def map (φ : V →ₗ[K] W) (v : TangentPoints x pt V) : TangentPoints x pt W := ⟨SquareZero.specMap K φ ≫ v.1, by rw [Category.assoc, v.2.1, SquareZero.specMap_toBase], by rw [SquareZero.basePoint_specMap_assoc, v.2.2]⟩ @[simp] theorem map_coe (φ : V →ₗ[K] W) (v : TangentPoints x pt V) : (v.map φ).1 = SquareZero.specMap K φ ≫ v.1 := rfl end TangentPoints end TangentPoints namespace RelPicard variable {K : Type u} [Field K] {C : Scheme.{u}} def TrivialModDeformations (c : C ⟶ Spec (CommRingCat.of K)) (ε : SchemeHomOver (𝟙 (Spec (CommRingCat.of K))) c) (V : Type u) [AddCommGroup V] [Module K V] [Module Kᵐᵒᵖ V] [IsCentralScalar K V] : Type (u + 1) := { L : RigidifiedLineBundle c ε (SquareZero.toBase K V) // Nonempty ((L.pullbackAlong (SquareZero.basePointOver K V)).L ≅ (RigidifiedLineBundle.unit (c := c) (ε := ε) (𝟙 (Spec (CommRingCat.of K)))).L) } namespace TrivialModDeformations variable {c : C ⟶ Spec (CommRingCat.of K)} {ε : SchemeHomOver (𝟙 (Spec (CommRingCat.of K))) c} variable {V : Type u} [AddCommGroup V] [Module K V] [Module Kᵐᵒᵖ V] [IsCentralScalar K V] variable {W : Type u} [AddCommGroup W] [Module K W] [Module Kᵐᵒᵖ W] [IsCentralScalar K W] theorem postComp_specMapOver_basePointOver (φ : V →ₗ[K] W) : postComp (SquareZero.specMapOver K φ) (SquareZero.basePointOver K W) = SquareZero.basePointOver K V := Subtype.ext (SquareZero.basePoint_specMap K φ) def map (φ : V →ₗ[K] W) (L : TrivialModDeformations c ε V) : TrivialModDeformations c ε W := ⟨L.1.pullbackAlong (SquareZero.specMapOver K φ), ⟨(Scheme.Modules.pullbackComp _ _).app L.1.L ≪≫ (Scheme.Modules.pullbackCongr ((baseChangeSnd_comp c (SquareZero.specMapOver K φ) (SquareZero.basePointOver K W)).trans (by rw [postComp_specMapOver_basePointOver]))).app L.1.L ≪≫ L.2.some⟩⟩ @[simp] theorem map_coe (φ : V →ₗ[K] W) (L : TrivialModDeformations c ε V) : (L.map φ).1 = L.1.pullbackAlong (SquareZero.specMapOver K φ) := rfl end TrivialModDeformations end RelPicard end AlgebraicGeometry end
Statements phrased using this module (82)
- Uₚ on the étale component J_E of the special fibre
ModularCurve.XOneP.exists_addEquiv_proj_snd_eq_of_pts_reduction_heckeGenOne_of_normFreePart_of_eichlerShimura_twoChartModel_x1_mul2 below · depth 22 - Uₚ on the second Picard factor of the special fibre
ModularCurve.XOneP.exists_postComp_heckeGenOne_eq_apply_postComp_and_map_mul_and_bijective_points_snd_specialFibre_of_factors_normFreePart_of_gaussReading_twoChartModel_x1_mul3,528 below · depth 22 - First-order deformations of the trivial bundle and Čech H¹
AlgebraicGeometry.RelPicard.exists_trivialModDeformations_map_H1_tensor_natural40 below · depth 26 - V-valued tangent vectors as maps out of the cotangent space
AlgebraicGeometry.Scheme.exists_tangentPoints_equiv_linearMap_cotangentSpace2 below · depth 26 - 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 - Point derivations give dual-number tangent points
AlgebraicGeometry.exists_tangentPoints_appLE_eq_of_pointDerivations0 below · depth 38 - Tangent vectors at the unit add under a relative group law
GoodReductionJacobian.RelativeGroupLaw.snd_appLE_mul_tangentPoints_eq_add0 below · depth 38