Definitions/Def_ModularCurve_UVCrossingInitialForm.lean
Unit parts, leading residues and initial forms of Laurent data
Over a commutative ring W, for elements \varpi, c the declaration unitPart ϖ c selects a cofactor witnessing the divisibility \varpi^{\,\mathrm{multiplicity}(\varpi,c)} \mid c; pow_multiplicity_mul_unitPart records the defining identity \varpi^{\,\mathrm{multiplicity}(\varpi, c)} \cdot \mathrm{unitPart}(\varpi,c) = c. Under the standing assumptions that W is a domain and a discrete valuation ring, leadingResidue ϖ c is the image of this cofactor in the residue field \mathrm{ResidueField}\,W, with the convention \mathrm{leadingResidue}(\varpi,0)=0; for c \ne 0 and \varpi a uniformiser it is the leading coefficient of c relative to \varpi, an element of the residue field.
For a pair ab = (a,b) of one-variable power series over W and a set S \subseteq \mathbb{Z}, initialFormOfSet ϖ S ab is the Laurent polynomial over the residue field \sum_{n \in S} \mathrm{leadingResidue}(\varpi, \mathrm{nfCoeff}(ab)(n))\, T^{n} when S is finite, and 0 otherwise; here \mathrm{nfCoeff}(ab)(n) is the n-th coefficient of a for n \ge 0 and the |n|-th coefficient of b for n < 0. The lemma initialFormOfSet_apply gives, for finite S, the coefficientwise description: the n-th coefficient is \mathrm{leadingResidue}(\varpi, \mathrm{nfCoeff}(ab)(n)) if n \in S and 0 otherwise.
Finally, given an order function v : W \to \mathbb{N}\cup\{\infty\} and natural numbers E, t, the initial form initialForm ϖ v E t ab is initialFormOfSet taken over the set \mathrm{dominantIndices}(v,E,t,ab) of indices n at which the term order v(\mathrm{nfCoeff}(ab)(n)) + \mathrm{annulusWeight}\,E\,t\,(\mathrm{nfExponent}\,n) attains the Gauss order of \mathrm{inU}(a) + \mathrm{inV}(b); initialForm_def states this unfolding. In particular the value is 0 whenever that set of dominant indices is infinite.
Relation to Mathlib
Multiplicity, the residue field and residue map of a local ring, and Laurent polynomials are Mathlib's; the extraction of a unit part relative to a fixed \varpi, the leading residue, and the initial form of a pair of power series along a set of indices are the project's own.
Where it is used
These notions supply the vocabulary for the local analysis of the crossing model W[[U,V]]/(UV-\pi): the initial form at depth t is the reduction, after optimal rescaling, of an element written as a(U)+b(V) on the circle v(U)=t, and it is the object through which multiplicativity of the Gauss order and the counting of zeros on such a circle are expressed.
References
- J.-P. Serre, Local Fields, Graduate Texts in Mathematics 67, Springer, 1979
- S. Bosch, U. Güntzer and R. Remmert, Non-Archimedean Analysis, Grundlehren der mathematischen Wissenschaften 261, Springer, 1984
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 61 lines
- 7 declarations
- used in the statements of 7 theorems and imported by 7 proofs
- imports 3 definition modules
Source file: Definitions/Def_ModularCurve_UVCrossingInitialForm.lean
Imports
Imported by
- no other definition module
Declarations
- def
ModularCurve.UVCrossingModel.unitPart - theorem
ModularCurve.UVCrossingModel.pow_multiplicity_mul_unitPart - def
ModularCurve.UVCrossingModel.leadingResidue - def
ModularCurve.UVCrossingModel.initialFormOfSet - theorem
ModularCurve.UVCrossingModel.initialFormOfSet_apply - def
ModularCurve.UVCrossingModel.initialForm - theorem
ModularCurve.UVCrossingModel.initialForm_def
Source
import Mathlib import Definitions.Def_ModularCurve_UVCrossingModel import Definitions.Def_ModularCurve_UVCrossingGaussOrder import Definitions.Def_ModularCurve_UVCrossingDominantIndices set_option autoImplicit false universe u namespace ModularCurve.UVCrossingModel noncomputable section open IsLocalRing variable {W : Type u} [CommRing W] def unitPart (ϖ c : W) : W := (pow_multiplicity_dvd ϖ c).choose theorem pow_multiplicity_mul_unitPart (ϖ c : W) : ϖ ^ multiplicity ϖ c * unitPart ϖ c = c := (pow_multiplicity_dvd ϖ c).choose_spec.symm variable [IsDomain W] [IsDiscreteValuationRing W] open Classical in def leadingResidue (ϖ c : W) : ResidueField W := if c = 0 then 0 else residue W (unitPart ϖ c) open Classical in def initialFormOfSet (ϖ : W) (S : Set ℤ) (ab : PowerSeries W × PowerSeries W) : LaurentPolynomial (ResidueField W) := if hS : S.Finite then ∑ n ∈ hS.toFinset, LaurentPolynomial.C (leadingResidue ϖ (nfCoeff ab n)) * LaurentPolynomial.T n else 0 open Classical in theorem initialFormOfSet_apply (ϖ : W) {S : Set ℤ} (hS : S.Finite) (ab : PowerSeries W × PowerSeries W) (n : ℤ) : (initialFormOfSet ϖ S ab).coeff n = if n ∈ S then leadingResidue ϖ (nfCoeff ab n) else 0 := by classical rw [initialFormOfSet, dif_pos hS] simp only [← LaurentPolynomial.single_eq_C_mul_T, AddMonoidAlgebra.coeff_sum, AddMonoidAlgebra.coeff_single] erw [Finsupp.finsetSum_apply] simp only [Finsupp.single_apply, Finset.sum_ite_eq', Set.Finite.mem_toFinset] def initialForm (ϖ : W) (v : W → ℕ∞) (E t : ℕ) (ab : PowerSeries W × PowerSeries W) : LaurentPolynomial (ResidueField W) := initialFormOfSet ϖ (dominantIndices v E t ab) ab theorem initialForm_def (ϖ : W) (v : W → ℕ∞) (E t : ℕ) (ab : PowerSeries W × PowerSeries W) : initialForm ϖ v E t ab = initialFormOfSet ϖ (dominantIndices v E t ab) ab := rfl end end ModularCurve.UVCrossingModel
Statements phrased using this module (7)
- Leading residue and dominance at the index m
ModularCurve.UVCrossingModel.leadingResidue_nfCoeff_eq_residue_constantCoeff_and_mem_dominantIndices_of_sub_mul_U_pow_mem0 below · depth 20 - Leading residue at index -n equals ̄ G(0,0), -n dominant
ModularCurve.UVCrossingModel.leadingResidue_nfCoeff_neg_eq_residue_constantCoeff_and_mem_dominantIndices_of_sub_mul_V_pow_mem0 below · depth 20 - Multiplicativity of extreme dominant leading residues
ModularCurve.UVCrossingModel.leadingResidue_nfCoeff_sInf_dominantIndices_zero_mul_and_sSup_mul34 below · depth 20 - End-ratio reciprocity on the crossing model W[[U,V]]/(UV-varpi^e)
ModularCurve.UVCrossingModel.leadingResidue_nfCoeff_sSup_mul_finprod_residue_unitPart_norm_pow_eq54 below · depth 20 - Reciprocity between end leading residues and branch norms of V
ModularCurve.UVCrossingModel.leadingResidue_nfCoeff_sSup_mul_finprod_residue_unitPart_norm_pow_eq_of_isUnit_coeff51 below · depth 21 - End leading residues and χ_U(0) on a crossing model
ModularCurve.UVCrossingModel.leadingResidue_charpoly_coeff_zero_mul_leadingResidue_nfCoeff_sInf47 below · depth 22 - Zero total drop forces monomial form in the crossing model
ModularCurve.UVCrossingModel.exists_eq_unit_mul_U_pow_mul_V_pow_mul_const_pow_of_sInf_eq_sSup41 below · depth 23