Definitions/Def_GoodReductionJacobian_IsRegluingBy.lean
Regluing relation between two bare deformations along a cover
Fix a ring S, a scheme A_S with a morphism f_S : A_S \to \operatorname{Spec} S and a relative group law L_S on f_S, and a ring B with S a B-algebra. A BareDeformation D of (f_S, L_S) to B consists of a scheme D.A with a structural morphism D.f : D.A \to \operatorname{Spec} B, a commutative relative group law D.L on D.f together with the bundle of properties (smooth, proper, connected fibres, group law present), a morphism D.g : A_S \to D.A exhibiting f_S as the base change of D.f along \operatorname{Spec} S \to \operatorname{Spec} B, and the compatibility of D.g with the two group laws on points.
Given two such deformations D_0 and D, an ordered affine open cover \mathcal U of D_0.A (finite linearly ordered index set, affine opens U_i covering D_0.A), and for each strictly increasing pair s = (i<j), written as an element of 𝒰.Idx 1, a self-isomorphism \tau_s of the open subscheme U_s = U_i \cap U_j, the predicate IsRegluingBy D₀ 𝒰 τ D asserts three things. First, each \tau_s is a morphism over \operatorname{Spec} B: composing \tau_s with the inclusion of U_s followed by D_0.f gives back that inclusion followed by D_0.f. Second, each \tau_s fixes the part coming from A_S: the restriction D_0.g \mid_{U_s} : D_0.g^{-1}(U_s) \to U_s followed by \tau_s equals itself. Third, there exists a family of morphisms \iota_i : U_i \to D.A which are open immersions, satisfy \iota_i followed by D.f equals the inclusion of U_i followed by D_0.f, are jointly surjective on underlying points, are compatible with the comparison morphisms (D_0.g \mid_{U_i} followed by \iota_i equals the inclusion D_0.g^{-1}(U_i) \to A_S followed by D.g), and are glued by \tau: for s=(i<j), the inclusion U_s \subseteq U_i followed by \iota_i equals \tau_s followed by the inclusion U_s \subseteq U_j followed by \iota_j.
Thus the regluing is recorded as a relation between two given deformations rather than as a construction of a glued scheme; no cocycle condition on \tau is imposed, and the relation constrains D only through D.A, D.f and D.g, not through its group law.
Relation to Mathlib
Mathlib provides gluing data for schemes and affine open covers, but no notion of a deformation of a scheme with a relative group law nor of regluing one by transition automorphisms; BareDeformation, Scheme.OrderedAffineCover (a cover with a finite linearly ordered index set, for alternating Čech indices) and IsRegluingBy are the project's own. The restriction notations f \mid_U and f^{-1}U and the morphism homOfLE between open subschemes are Mathlib's.
Where it is used
The predicate belongs to the project's treatment of abelian schemes over a base ring, in particular Jacobians with good reduction: it compares two lifts of the same situation along the base change B \to S, which is the form in which lifts along nilpotent thickenings and the resulting effect on the associated formal group are analysed.
References
- E. Sernesi, Deformations of Algebraic Schemes, Grundlehren der mathematischen Wissenschaften 334, Springer, 2006
- M. Schlessinger, Functors of Artin rings, Transactions of the American Mathematical Society 130 (1968), 208–222
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 34 lines
- 1 declarations
- used in the statements of 60 theorems and imported by 62 proofs
- imports 2 definition modules
Source file: Definitions/Def_GoodReductionJacobian_IsRegluingBy.lean
Imported by
- no other definition module
Declarations
Source
import Definitions.Def_GoodReductionJacobian_BareDeformation import Definitions.Def_AlgebraicGeometry_OrderedAffineCoverCech set_option autoImplicit false noncomputable section open CategoryTheory AlgebraicGeometry NeronModelInfra namespace GoodReductionJacobian.BareDeformation variable {S : Type} [CommRing S] {Aₛ : Scheme.{0}} {fₛ : Aₛ ⟶ Spec (CommRingCat.of S)} {Lₛ : RelativeGroupLaw S fₛ} {B : Type} [CommRing B] [Algebra B S] def IsRegluingBy (D₀ : BareDeformation fₛ Lₛ B) (𝒰 : D₀.A.OrderedAffineCover) (τ : ∀ s : 𝒰.Idx 1, ((↑(𝒰.inter s) : Scheme.{0}) ≅ ↑(𝒰.inter s))) (D : BareDeformation fₛ Lₛ B) : Prop := (∀ s : 𝒰.Idx 1, (τ s).hom ≫ (𝒰.inter s).ι ≫ D₀.f = (𝒰.inter s).ι ≫ D₀.f) ∧ (∀ s : 𝒰.Idx 1, (D₀.g ∣_ 𝒰.inter s) ≫ (τ s).hom = D₀.g ∣_ 𝒰.inter s) ∧ ∃ ι : ∀ i : 𝒰.ι, (↑(𝒰.U i) : Scheme.{0}) ⟶ D.A, (∀ i, IsOpenImmersion (ι i)) ∧ (∀ i, ι i ≫ D.f = (𝒰.U i).ι ≫ D₀.f) ∧ (∀ x : D.A, ∃ (i : 𝒰.ι) (y : ↑(𝒰.U i)), (ι i).base y = x) ∧ (∀ i, (D₀.g ∣_ 𝒰.U i) ≫ ι i = (D₀.g ⁻¹ᵁ 𝒰.U i).ι ≫ D.g) ∧ (∀ s : 𝒰.Idx 1, D₀.A.homOfLE (𝒰.inter_le s 0) ≫ ι (s.1 0) = (τ s).hom ≫ D₀.A.homOfLE (𝒰.inter_le s 1) ≫ ι (s.1 1)) end GoodReductionJacobian.BareDeformation end
Statements phrased using this module (60)
- 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 - Re-gluing preserves smoothness of relative dimension n
GoodReductionJacobian.BareDeformation.smoothOfRelativeDimension_of_isRegluingBy0 below · depth 30 - 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 - Every bare deformation re-glues a fixed one on an affine cover
GoodReductionJacobian.BareDeformation.exists_isRegluingBy_of_bareDeformation_bare11 below · depth 31 - Re-gluing commutes with base change along φ
GoodReductionJacobian.BareDeformation.exists_isRegluingBy_of_isRegluingBy_of_isPullback_of_preimage_eq0 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 - Regluings along intertwined transition data are isomorphic
GoodReductionJacobian.BareDeformation.isIso_of_isRegluingBy_of_forall_comp_hom_eq0 below · depth 31 - 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 - 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 - 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 - 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 - 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 - 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 - Cocycle identity for the transitions of a re-gluing
GoodReductionJacobian.BareDeformation.exists_cocycle_of_isRegluingBy1 below · depth 37 - Re-gluing commutes with base change along a retraction
GoodReductionJacobian.BareDeformation.exists_isRegluingBy_of_isRegluingBy_of_isPullback0 below · depth 37 - Overlap automorphisms over a triple fibre product base
GoodReductionJacobian.BareDeformation.exists_overlap_isos_comap_of_sections11 below · depth 37 - Cohomologous tangent cocycles give isomorphic regluings
GoodReductionJacobian.BareDeformation.isIso_of_isRegluingBy_of_exists_d_eq_sub22 below · depth 37 - Universal overlap automorphism over a triple fibre product of bases
GoodReductionJacobian.BareDeformation.exists_overlap_isos_comap_slice6 below · depth 38 - Cocycle identity descends to the base-changed overlap automorphisms
GoodReductionJacobian.BareDeformation.overlap_isos_comap_cocycle_of_slice7 below · depth 38 - Three slices jointly determine morphisms of pulled-back overlaps
GoodReductionJacobian.BareDeformation.eq_of_forall_slice_comp_eq3 below · depth 39 - Slice-prescribed endomorphism of a pulled-back overlap
GoodReductionJacobian.BareDeformation.exists_endo_comap_inter_of_slices5 below · depth 39