Summable families of Hahn Series #
We introduce a notion of formal summability for families of Hahn series, and define a formal sum function. This theory is applied to characterize invertible Hahn series whose coefficients are in a commutative domain.
Main Definitions #
- A
HahnSeries.SummableFamilyis a family of Hahn series such that the union of the supports is partially well-ordered and only finitely many are nonzero at any given coefficient. Note that this is different fromSummablein the valuation topology, because there are topologically summable families that do not satisfy the axioms ofHahnSeries.SummableFamily, and formally summable families whose sums do not converge topologically. - The formal sum,
HahnSeries.SummableFamily.hsumcan be bundled as aLinearMapviaHahnSeries.SummableFamily.lsum.
Main results #
- If
Ris a commutative domain, andΓis a linearly ordered additive commutative group, then a Hahn series is a unit if and only if its leading term is a unit inR.
TODO #
- Remove unnecessary domain hypotheses.
- More general summable families, e.g., define the evaluation homomorphism from a power series
ring taking
Xto a positive order element. - Generalize
SMulto Hahn modules.
References #
- [J. van der Hoeven, Operators on Generalized Power Series][van_der_hoeven]
A family of Hahn series whose formal coefficient-wise sum is a Hahn series. For each coefficient of the sum to be well-defined, we require that only finitely many series are nonzero at any given coefficient. For the formal sum to be a Hahn series, we require that the union of the supports of the constituent series is partially well-ordered.
- toFun : α → HahnSeries Γ R
A parametrized family of Hahn series.
- isPWO_iUnion_support' : (⋃ (a : α), (self.toFun a).support).IsPWO
- finite_co_support' : ∀ (g : Γ), {a : α | (self.toFun a).coeff g ≠ 0}.Finite
Instances For
Equations
- HahnSeries.SummableFamily.instFunLike = { coe := HahnSeries.SummableFamily.toFun, coe_injective' := ⋯ }
Equations
- HahnSeries.SummableFamily.instAdd = { add := fun (x y : HahnSeries.SummableFamily Γ R α) => { toFun := ⇑x + ⇑y, isPWO_iUnion_support' := ⋯, finite_co_support' := ⋯ } }
Equations
- HahnSeries.SummableFamily.instZero = { zero := { toFun := 0, isPWO_iUnion_support' := ⋯, finite_co_support' := ⋯ } }
Equations
- HahnSeries.SummableFamily.instInhabited = { default := 0 }
Equations
- HahnSeries.SummableFamily.instAddCommMonoid = AddCommMonoid.mk ⋯
The infinite sum of a SummableFamily of Hahn series.
Equations
- s.hsum = { coeff := fun (g : Γ) => ∑ᶠ (i : α), (s i).coeff g, isPWO_support' := ⋯ }
Instances For
Equations
- HahnSeries.SummableFamily.instNeg = { neg := fun (s : HahnSeries.SummableFamily Γ R α) => { toFun := fun (a : α) => -s a, isPWO_iUnion_support' := ⋯, finite_co_support' := ⋯ } }
Equations
- HahnSeries.SummableFamily.instAddCommGroup = AddCommGroup.mk ⋯
Equations
- One or more equations did not get rendered due to their size.
The summation of a summable_family as a LinearMap.
Equations
- HahnSeries.SummableFamily.lsum = { toFun := HahnSeries.SummableFamily.hsum, map_add' := ⋯, map_smul' := ⋯ }
Instances For
A family with only finitely many nonzero elements is summable.
Equations
- HahnSeries.SummableFamily.ofFinsupp f = { toFun := ⇑f, isPWO_iUnion_support' := ⋯, finite_co_support' := ⋯ }
Instances For
A summable family can be reindexed by an embedding without changing its sum.
Equations
- s.embDomain f = { toFun := fun (b : β) => if h : b ∈ Set.range ⇑f then s (Classical.choose h) else 0, isPWO_iUnion_support' := ⋯, finite_co_support' := ⋯ }
Instances For
The powers of an element of positive valuation form a summable family.
Equations
- HahnSeries.SummableFamily.powers x hx = { toFun := fun (n : ℕ) => x ^ n, isPWO_iUnion_support' := ⋯, finite_co_support' := ⋯ }