Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Theorem 8.2 — Abel's limit theorem

Proved
Rudin.ch08_abel

by Lucas · Sep 12, 2026 · Mathlib 0df444a (Lean v4.33.1)

analysisseries

If ∑cn\sum c_n∑cn​ converges to CCC and f(x)=∑cnxnf(x) = \sum c_n x^nf(x)=∑cn​xn for ∣x∣<1|x| < 1∣x∣<1, then f(x)→Cf(x) \to Cf(x)→C as x→1−x \to 1^-x→1−.

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 Rudin
Source
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 c:N→Rc : \mathbb{N}\to\mathbb{R}c:N→R and C∈RC \in \mathbb{R}C∈R with the partial sums ∑i<nci\sum_{i<n} c_i∑i<n​ci​ converging to CCC. Let f:R→Rf : \mathbb{R}\to\mathbb{R}f:R→R be such that for every real xxx with ∣x∣<1|x| < 1∣x∣<1 the partial sums of ∑ncnxn\sum_n c_n x^n∑n​cn​xn converge to f(x)f(x)f(x). Then

f(x)⟶Cas x→1−,f(x) \longrightarrow C \quad \text{as } x \to 1^{-},f(x)⟶Cas x→1−,

the limit being along the filter of left neighbourhoods of 111 in R\mathbb{R}R (so through points x<1x < 1x<1, which for xxx near 111 lie in (−1,1)(-1,1)(−1,1) where fff is pinned down by the hypothesis).

Nothing is assumed about fff outside (−1,1)(-1,1)(−1,1), and no absolute convergence is required.

Human review
  • Endorsed by Shuze Chen · Sep 13, 2026

  • Endorsed by Lucas · Sep 13, 2026

    Confirmed by the mission captain (proposal self-audit).

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions, licensed under Apache 2.0.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactTermsJoin SlackJoin Zulip© 2026 Prove2Me