From Coefficient Space to Analytic Functions #
This file bridges the gap between:
- Coefficient space: ã ∈ ℓ¹_ν with F(ã) = ã ⋆ ã - c = 0
- Function space: x̃(z) = Σ ãₙ zⁿ satisfies x̃(z)² - (λ₀ + z) = 0
Main Results #
l1Weighted.toPowerSeries: Embedding of ℓ¹_ν into formal power series ℝ⟦X⟧l1Weighted.eval: Evaluation of power series at points in the disk of convergencel1Weighted.eval_mul: Evaluation commutes with multiplication (Mertens' theorem)l1Weighted.eval_sq_eq: If F(ã) = 0, then eval(ã, z)² = λ₀ + zExample_7_7.analyticSolution_eq_sqrt: Branch selection via IVT shows x̃(λ - λ₀) = √λ
Architecture #
We separate the formal and analytic levels:
- Formal level:
l1Weighted.toPowerSeriesembeds sequences intoPowerSeries ℝ- Multiplication in
PowerSeriesis the Cauchy product by definition - No convergence issues at this level
- Multiplication in
- Analytic level:
l1Weighted.evalevaluates the series at |z| ≤ ν- Uses absolute convergence from ℓ¹_ν membership
- Mertens' theorem shows evaluation commutes with multiplication
References #
This completes the formalization of Example 7.7 from the radii polynomial textbook.
Formal Power Series Embedding #
Embed an ℓ¹_ν sequence as a formal power series in ℝ⟦X⟧
Equations
Instances For
Coefficient extraction agrees with the underlying sequence
The formal power series for the parameter sequence c = (λ₀, 1, 0, 0, ...)
Equations
Instances For
The parameter series equals C(λ₀) + X in the ring of power series
Cauchy Product is PowerSeries Multiplication #
The key insight: multiplication in PowerSeries ℝ is defined as the Cauchy product.
This is purely algebraic—no convergence needed at the formal level.
PowerSeries multiplication agrees with Cauchy product coefficient-wise
Squaring in PowerSeries equals self-convolution
The fixed-point equation F(a) = 0 means a² = c in PowerSeries
Analytic Evaluation #
If a ∈ ℓ¹_ν and |z| ≤ ν, then Σ aₙ zⁿ converges absolutely
Absolute summability
Evaluate a power series at z ∈ ℝ with |z| ≤ ν
Equations
- l1Weighted.eval a z = ∑' (n : ℕ), lpWeighted.toSeq a n * z ^ n
Instances For
eval agrees with summing coefficients times powers
Mertens' Theorem: Evaluation Commutes with Multiplication #
Key lemma: (Σ aₙ zⁿ) * (Σ bₙ zⁿ) = Σ (a ⋆ b)ₙ zⁿ
Squaring: (Σ aₙ zⁿ)² = Σ (a ⋆ a)ₙ zⁿ
Evaluation of the Parameter Series #
Main Semantic Theorems #
If F(a) = 0, then eval(a, z)² = λ₀ + z
eval(a, 0) = a₀
Connection to Example 7.7 #
Alias for backward compatibility
Equations
Instances For
The analytic function x̃(λ) = Σ ãₙ (λ - λ₀)ⁿ satisfies x̃(λ)² = λ
The function x̃ defines a branch of √λ near λ₀