Definitions/Def_RamificationChain_Wild.lean
Weighted subgroup-chain sums and a Hasse–Arf divisibility predicate
Fix a group G. The module introduces three pieces of vocabulary for bookkeeping with a sequence of subgroups Gs : \mathbb{N} \to \mathrm{Subgroup}\,G together with a weight function cod : \mathrm{Subgroup}\,G \to \mathbb{N}.
First, wildSum Gs cod N is the truncated weighted sum
\sum_{i=1}^{N} \#(Gs\,i)\cdot cod(Gs\,i),
the index ranging over the integer interval Finset.Icc 1 N and \# being Nat.card of the subgroup (so the contribution of an infinite subgroup is 0). Second, wildDeltaChain Gs cod N is wildSum Gs cod N divided by \#(Gs\,0) in the natural numbers; this is truncating division, so the value agrees with the rational quotient exactly when \#(Gs\,0) divides the weighted sum. Third, HasseArfChain Gs is the predicate asserting that for every index i with Gs\,i \neq Gs\,(i+1) one has
\#(Gs\,0) \ \Big|\ \sum_{j=1}^{i} \#(Gs\,j).
In the intended reading, Gs is a ramification filtration in lower numbering and cod the codimension of a fixed space, so that wildSum is the numerator of a wild Artin/Swan contribution and wildDeltaChain the contribution itself; HasseArfChain records the integrality of the corresponding upper-numbering breaks, which the Hasse–Arf theorem supplies for abelian extensions. None of this is built into the definitions: no decrease, normality, finiteness or exhaustion of the chain Gs is required, the weight cod is an arbitrary \mathbb{N}-valued function on subgroups, and the condition in HasseArfChain is attached to the indices at which the given presentation Gs changes value rather than to jumps of an intrinsically defined filtration. Any identification of Gs with a ramification filtration, and of cod with a codimension, is a hypothesis to be provided by the user of these definitions.
Relation to Mathlib
Mathlib has no such abstract chain bookkeeping; these are the project's own definitions, phrased purely in terms of Mathlib's Subgroup, Nat.card and Finset.Icc.
Where it is used
These are the abstract counting primitives used in the conductor computations for the Frey curve and its associated Galois representations, where the wild part of a conductor exponent is a weighted sum over a ramification filtration divided by the order of the inertia group, and where integrality of the quotient is guaranteed by a Hasse–Arf type divisibility.
References
- J.-P. Serre, Local Fields, Graduate Texts in Mathematics 67, Springer, 1979, Chapters IV–VI
- 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.
- 21 lines
- 3 declarations
- used in the statements of 9 theorems and imported by 10 proofs
- imports 0 definition modules
Source file: Definitions/Def_RamificationChain_Wild.lean
Declarations
Source
import Mathlib.Algebra.Group.Subgroup.Finite ↗ import Mathlib.Algebra.BigOperators.Intervals ↗ set_option autoImplicit false namespace RamificationChain variable {G : Type*} [Group G] noncomputable def wildSum (Gs : ℕ → Subgroup G) (cod : Subgroup G → ℕ) (N : ℕ) : ℕ := ∑ i ∈ Finset.Icc 1 N, Nat.card ↥(Gs i) * cod (Gs i) noncomputable def wildDeltaChain (Gs : ℕ → Subgroup G) (cod : Subgroup G → ℕ) (N : ℕ) : ℕ := wildSum Gs cod N / Nat.card ↥(Gs 0) def HasseArfChain (Gs : ℕ → Subgroup G) : Prop := ∀ i : ℕ, Gs i ≠ Gs (i + 1) → Nat.card ↥(Gs 0) ∣ ∑ j ∈ Finset.Icc 1 i, Nat.card ↥(Gs j) end RamificationChain
Statements phrased using this module (9)
- Hasse–Arf integrality for degree-one characters
IsDiscreteValuationRing.exists_finsum_lowerRamificationGroup_indicator_eq_natCast20 below · depth 16 - Quotient group inherits the frame on the fixed subring
FixedPoints.faithfulSMul_and_liesOver_and_isSeparable_and_perfectField_subring0 below · depth 17 - Hasse–Arf condition for cyclic lower ramification chains
IsDiscreteValuationRing.hasseArfChain_lowerRamificationGroup_of_isCyclic6 below · depth 17 - Tame inertia quotient embeds in residue field units
IsDiscreteValuationRing.exists_monoidHom_lowerRamificationGroup_zero_residueField_units0 below · depth 18 - Hasse–Arf condition for abelian lower ramification chains
IsDiscreteValuationRing.hasseArfChain_lowerRamificationGroup_of_isMulCommutative19 below · depth 18 - Hasse–Arf condition from Sen's congruences, cyclic inertia
IsDiscreteValuationRing.hasseArfChain_of_isCyclic_of_dvd_of_modEq0 below · depth 18 - Sen's congruence for ramification depths of p-power iterates
IsDiscreteValuationRing.ramificationDepth_pow_prime_pow_modEq_of_mem_lowerRamificationGroup_one0 below · depth 18 - Lower jumps are divisible by [G₀:G₁] when G₀ is abelian
IsDiscreteValuationRing.relIndex_dvd_of_lowerRamificationGroup_ne_succ_of_commute1 below · depth 18 - Hasse–Arf for abelian G from its cyclic quotients
IsDiscreteValuationRing.hasseArfChain_lowerRamificationGroup_of_forall_isCyclic_quotient10 below · depth 19