Theorem 8.2 — Abel's limit theorem
ProvedRudin.ch08_abelanalysisseries
If converges to and for , then as .
Preamble
import Mathlib import Definitions.Def_Rudin_ch03_series open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.2 (Abel's theorem): if `∑ cₙ` converges to `C` and `f x = ∑ cₙ xⁿ` for
`|x| < 1`, then `f x → C` as `x → 1⁻`. -/
theorem ch08_abel (c : ℕ → ℝ) (C : ℝ) (hC : SeriesConvergesTo c C) (f : ℝ → ℝ)
(hf : ∀ x : ℝ, |x| < 1 → SeriesConvergesTo (fun n => c n * x ^ n) (f x)) :
Tendsto f (𝓝[<] (1 : ℝ)) (𝓝 C) := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, p. 174, Theorem 8.2
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let and with the partial sums converging to . Let be such that for every real with the partial sums of converge to . Then
the limit being along the filter of left neighbourhoods of in (so through points , which for near lie in where is pinned down by the hypothesis).
Nothing is assumed about outside , and no absolute convergence is required.
Human review
Confirmed by the mission captain (proposal self-audit).