Definitions/Def_CerednikDrinfeld_OmegaOrdAt.lean
Coordinate function and order of vanishing on the Drinfeld upper half-plane
Throughout, K_0 and K are fields with K a K_0-algebra carrying a valuation with values in a linearly ordered commutative group with zero \Gamma_0, and \varpi is a PseudoUniformizer K₀ K, i.e. an element of K_0 whose value is strictly between 0 and 1 and such that every nonzero element of K_0 has value squeezed between v(\varpi)^N and v(\varpi)^{-N} for some N. Here \Omega = upperHalfPlane K₀ K is the complement in K of the image of K_0, and holRing ϖ is the subring of functions \Omega \to K whose restriction to each affinoid \Omega_n = affinoid ϖ n is a uniform limit of evaluations of pole-free rational pairs with uniformly bounded values.
The first declaration records that the coordinate z \mapsto z belongs to holRing ϖ: on each \Omega_n it is given by the rational pair X/1, which is pole-free there and bounded by v(\varpi^{-n}) by the defining inequality of the affinoid. This gives coord ϖ, an element of holRing ϖ, and, for a point z \in \Omega, coordSub ϖ z = coord ϖ - z, the holomorphic function w \mapsto w - z, which vanishes at w = z.
For F \in holRing ϖ and z \in \Omega, ordAt ϖ F z is defined as the supremum, taken in \mathbb{N}, of the set of n with (w-z)^n \mid F in the ring holRing ϖ, that is, of those n for which F = (w-z)^n G with G holomorphic on \Omega. Accompanying lemmas unfold this definition, note that n = 0 always belongs to the set, give the upper bound \operatorname{ord}_z F \le N whenever every admissible exponent is \le N, and give the lower bound n \le \operatorname{ord}_z F from a divisibility (w-z)^n \mid F together with boundedness above of the exponent set. Since the supremum is the \mathbb{N}-valued one, an exponent set that is unbounded above yields the value 0; no analytic finiteness statement is asserted here.
Relation to Mathlib
holRing, the affinoids and the pseudo-uniformizer are the project's own notions. The order of vanishing is defined directly as an \mathbb{N}-valued sSup over a divisibility set rather than through Mathlib's multiplicity API, so the value at an exponent set unbounded above is 0.
Where it is used
These definitions provide the divisor bookkeeping for rigid-analytic functions on the Drinfeld upper half-plane used in the Čerednik–Drinfeld description of Shimura curves via Mumford quotients, on the way to the modular-curve input of the modularity argument.
References
- V. G. Drinfeld, Coverings of p-adic symmetric domains, Funktsional. Analiz i ego Prilozheniya 10 (1976), 29–40
- D. Mumford, An analytic construction of degenerating curves over complete local rings, Compositio Mathematica 24 (1972), 129–174
- J.-F. Boutot and H. Carayol, Uniformisation p-adique des courbes de Shimura: les théorèmes de Čerednik et de Drinfeld, Astérisque 196–197 (1991), 45–158
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 59 lines
- 11 declarations
- used in the statements of 13 theorems and imported by 21 proofs
- imports 1 definition modules
Source file: Definitions/Def_CerednikDrinfeld_OmegaOrdAt.lean
Imported by
- no other definition module
Declarations
- theorem
CerednikDrinfeld.Omega.coord_mem_holRing - def
CerednikDrinfeld.Omega.coord - theorem
CerednikDrinfeld.Omega.coord_apply - def
CerednikDrinfeld.Omega.coordSub - theorem
CerednikDrinfeld.Omega.coordSub_apply - theorem
CerednikDrinfeld.Omega.coordSub_apply_self - def
CerednikDrinfeld.Omega.ordAt - theorem
CerednikDrinfeld.Omega.ordAt_def - theorem
CerednikDrinfeld.Omega.zero_mem_setOf_pow_dvd - theorem
CerednikDrinfeld.Omega.ordAt_le_of_forall_le - theorem
CerednikDrinfeld.Omega.le_ordAt_of_pow_dvd
Source
import Definitions.Def_CerednikDrinfeld_DrinfeldHolomorphic set_option autoImplicit false noncomputable section open CerednikDrinfeld.Omega namespace CerednikDrinfeld.Omega variable {K₀ : Type} [Field K₀] {K : Type} [Field K] [Algebra K₀ K] variable {Γ₀ : Type} [LinearOrderedCommGroupWithZero Γ₀] [Valued K Γ₀] variable (ϖ : PseudoUniformizer K₀ K) theorem coord_mem_holRing : (fun z : ↥(upperHalfPlane K₀ K) => (z : K)) ∈ holRing ϖ := by intro n have h := isHolOn_ratPair (S := affinoid ϖ n) ⟨Polynomial.X, 1⟩ (fun z _ => by simp) ⟨algebraMap K₀ K (ϖ.ϖ⁻¹ ^ n), fun z hz => by have := ((mem_affinoid_iff' ϖ n z).1 hz).1 simpa [RatPair.evalAt, map_pow, map_inv₀] using this⟩ convert h using 1 funext z simp [restrictAffinoid, RatPair.evalAt] def coord : ↥(holRing ϖ) := ⟨fun z => (z : K), coord_mem_holRing ϖ⟩ @[simp] theorem coord_apply (z : ↥(upperHalfPlane K₀ K)) : (coord ϖ : ↥(upperHalfPlane K₀ K) → K) z = (z : K) := rfl def coordSub (z : ↥(upperHalfPlane K₀ K)) : ↥(holRing ϖ) := coord ϖ - algebraMap K ↥(holRing ϖ) (z : K) @[simp] theorem coordSub_apply (z w : ↥(upperHalfPlane K₀ K)) : (coordSub ϖ z : ↥(upperHalfPlane K₀ K) → K) w = (w : K) - (z : K) := rfl theorem coordSub_apply_self (z : ↥(upperHalfPlane K₀ K)) : (coordSub ϖ z : ↥(upperHalfPlane K₀ K) → K) z = 0 := sub_self _ def ordAt (F : ↥(holRing ϖ)) (z : ↥(upperHalfPlane K₀ K)) : ℕ := sSup {n : ℕ | coordSub ϖ z ^ n ∣ F} theorem ordAt_def (F : ↥(holRing ϖ)) (z : ↥(upperHalfPlane K₀ K)) : ordAt ϖ F z = sSup {n : ℕ | coordSub ϖ z ^ n ∣ F} := rfl theorem zero_mem_setOf_pow_dvd (F : ↥(holRing ϖ)) (z : ↥(upperHalfPlane K₀ K)) : (0 : ℕ) ∈ {n : ℕ | coordSub ϖ z ^ n ∣ F} := by simp theorem ordAt_le_of_forall_le (F : ↥(holRing ϖ)) (z : ↥(upperHalfPlane K₀ K)) (N : ℕ) (h : ∀ n : ℕ, coordSub ϖ z ^ n ∣ F → n ≤ N) : ordAt ϖ F z ≤ N := csSup_le ⟨0, zero_mem_setOf_pow_dvd ϖ F z⟩ (fun n hn => h n hn) theorem le_ordAt_of_pow_dvd (F : ↥(holRing ϖ)) (z : ↥(upperHalfPlane K₀ K)) {n : ℕ} (hn : coordSub ϖ z ^ n ∣ F) (hb : BddAbove {n : ℕ | coordSub ϖ z ^ n ∣ F}) : n ≤ ordAt ϖ F z := le_csSup hb hn end CerednikDrinfeld.Omega end
Statements phrased using this module (13)
- Divisibility in 𝒪(Ω) is decided by orders of vanishing
CerednikDrinfeld.Omega.dvd_of_forall_ordAt_le18 below · depth 22 - Factorisation at a point: F=(w-z)^{ord_z F}G with G(z)≠ 0
CerednikDrinfeld.Omega.exists_eq_coordSub_pow_ordAt_mul_and_apply_ne_zero7 below · depth 22 - Additivity of the order of vanishing on Ω
CerednikDrinfeld.Omega.ordAt_mul9 below · depth 22 - Order at a place times stabiliser order equals order of vanishing
CerednikDrinfeld.Omega.ord_place_invariantFieldOf_mul_card_stabilizer_eq_ordAt_sub_ordAt_of_cast_card_ne_zero_of_map_le_typePreserving_of_exists_v_le_of_v_card_eq_one110 below · depth 22 - Pull-back of a point divisor under change of level
CerednikDrinfeld.Omega.pullbackAlong_single_place_eq_sum_of_forall_ord_mul_card_stabilizer_eq_of_algEquiv2 below · depth 22 - Finite order of vanishing on Drinfeld's upper half plane
CerednikDrinfeld.Omega.bddAbove_setOf_coordSub_pow_dvd4 below · depth 23 - Divisibility by w-z at a zero of a holomorphic function on Ω
CerednikDrinfeld.Omega.coordSub_dvd_of_apply_eq_zero1 below · depth 23 - Orders of vanishing of a theta pair on Ω
CerednikDrinfeld.Omega.exists_isThetaPair_ordAt_eq_card13 below · depth 23 - Invariant function vanishing to the stabiliser order at a point
CerednikDrinfeld.Omega.exists_mk_mem_invariantFieldOf_apply_ne_zero_ordAt_eq_card_stabilizer_of_map_le_typePreserving_of_v_card_eq_one108 below · depth 23 - Stabiliser order divides vanishing orders of Γ-invariant functions
CerednikDrinfeld.Omega.natCast_card_stabilizer_dvd_ordAt_sub_ordAt_of_mk_mem_invariantFieldOf_of_map_le_typePreserving8 below · depth 23 - Transporting a local presentation of an invariant function along ρ(γ)
CerednikDrinfeld.Omega.exists_disc_forall_sub_pow_mul_eq_of_forall_pmoebius_eq_of_disc0 below · depth 30 - Fundamental affinoid for a group acting through ρ on the tree
CerednikDrinfeld.Omega.exists_forall_exists_pmoebius_mem_affinoid_of_finite_quotVert13 below · depth 30 - Holomorphic function vanishing to prescribed orders along G-orbits
CerednikDrinfeld.Omega.exists_holRing_ne_zero_forall_le_ordAt_smul20 below · depth 30