The unit filtration of a finite dyadic field (supporting definitions for B13) #
The norm-one unit subgroup and the depth filtration U^{(i)} = 1 + ๐ญ_k^i of a finite
extension k/โโ inside โฬโ, in the repo's spectral-norm vocabulary (the IsDeepUnit
idiom): depth is measured against a uniformizer ฯ by โu โ 1โ โค โฯโ^i โ no valuation
ring, residue field, or ramification bookkeeping is introduced.
The structure DyadicUnitFiltration bundles the former B13 axiom content: existence of a
uniformizer (discreteness of the value group), the normalization โ2โ = โฯโ^e, and the
residue counts of the graded pieces of the filtration โ Serre, Local Fields [7],
Ch. IV ยง2, Proposition 6 (verified verbatim against the cited source; the audit copy is
not vendored):
U^{(0)}/U^{(1)} โ
kฬ^ร (order 2^f โ 1) and U^{(i)}/U^{(i+1)} โ
kฬโบ (order 2^f) for
i โฅ 1. The interface GQ2.dyadicUnitFiltration asserting an instance for every finite k
lives in GQ2/Foundations/Axioms.lean; everything in this file is a plain definition or a
proved lemma.
The proposal's (F2) clause (the inertia twist ฮธ_g = (gโขฯ)/ฯ acting on gr_j by ฮธ_g^j)
turned out to be derivable and is therefore NOT a field: gโข(1+a) = 1 + ฮธ_g^iยทg(a/ฯ^i)ยทฯ^i
is exact โฬโ-algebra, and ฮธ_g^e = g(u)/u โก 1 (mod ๐ช) for inertial g follows from the
he normalization with u = ฯ^e/2. See docs/orchestration/p15f1-axiom-proposal.md and the B13 entry of
docs/literature-axioms.md.
the deep-part proof.
The norm-one units of k โ the arithmetic unit group O_k^ร of the field k, cut
out of (โฅk)หฃ (which is all of k โ {0}) by the spectral norm.
Equations
- GQ2.normUnits k = { carrier := {u : (โฅk)หฃ | โโโuโ = 1}, mul_mem' := โฏ, one_mem' := โฏ, inv_mem' := โฏ }
Instances For
Membership in normUnits unfolded.
The depth-i unit subgroup U^{(i)} = 1 + ๐ญ_k^i relative to a uniformizer ฯ:
norm-one units with โu โ 1โ โค โฯโ^i. (At i = 0 this is all of normUnits k โ
depthUnits_zero; no hypothesis on ฯ is needed for the subgroup property.)
Equations
- GQ2.depthUnits k ฯ i = { carrier := {u : (โฅk)หฃ | โโโuโ = 1 โง โโโu - 1โ โค โฯโ ^ i}, mul_mem' := โฏ, one_mem' := โฏ, inv_mem' := โฏ }
Instances For
Membership in depthUnits unfolded.
At depth 0 the filtration is the full norm-one unit group (โu โ 1โ โค 1 is automatic
by the ultrametric inequality).
The depth filtration is decreasing (for โฯโ โค 1).
The B13 bundle โ the unit-filtration data of a finite dyadic field: a uniformizer
(value-group discreteness), the โ2โ = โฯโ^e normalization, and the residue counts of the
graded pieces (Serre LF [7], Ch. IV ยง2, Prop. 6). Asserted for every finite k by the axiom
GQ2.dyadicUnitFiltration (GQ2/Foundations/Axioms.lean); see the docstring there for the
full citation/deviation record.
- ฯ : AlgebraicClosure โ_[2]
A uniformizer: an element of
kof maximal norm< 1. - hฯ_mem : self.ฯ โ k
- hฯ_ne : self.ฯ โ 0
- hฯ_lt : โself.ฯโ < 1
- hฯ_max (x : AlgebraicClosure โ_[2]) : x โ k โ โxโ < 1 โ โxโ โค โself.ฯโ
Discreteness:
ฯattains the maximal norm below1(soโฯโgenerates the value group ofk). - e : โ
The absolute ramification index:
v_k(2) = e. - he_pos : 1 โค self.e
- f : โ
The residue degree:
#kฬ = 2^f. - hf_pos : 1 โค self.f
- card_gr_zero : Nat.card (โฅ(normUnits k) โงธ (depthUnits k self.ฯ 1).subgroupOf (normUnits k)) = 2 ^ self.f - 1
Serre LF IV ยง2 Prop. 6(a):
U^{(0)}/U^{(1)} โ kฬ^ร, of order2^f โ 1. - card_gr (i : โ) : 1 โค i โ Nat.card (โฅ(depthUnits k self.ฯ i) โงธ (depthUnits k self.ฯ (i + 1)).subgroupOf (depthUnits k self.ฯ i)) = 2 ^ self.f
Serre LF IV ยง2 Prop. 6(b):
U^{(i)}/U^{(i+1)} โ kฬโบ, of order2^f, for everyi โฅ 1.