Theorem 8.5 — identity theorem for power series
ProvedRudin.ch08_identity_theoremanalysisseries
If and converge on and their sums agree on a set having a limit point in , then for all .
Preamble
import Mathlib import Definitions.Def_Rudin_ch03_series open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.5: if two power series converge on `(-R, R)` and their sums agree on a set
which has a limit point in `(-R, R)`, then the two series have the same coefficients. -/
theorem ch08_identity_theorem (a b : ℕ → ℝ) (R : ℝ) (hR : 0 < R) (f g : ℝ → ℝ)
(hf : ∀ x : ℝ, |x| < R → SeriesConvergesTo (fun n => a n * x ^ n) (f x))
(hg : ∀ x : ℝ, |x| < R → SeriesConvergesTo (fun n => b n * x ^ n) (g x))
(E : Set ℝ) (hE : E ⊆ Set.Ioo (-R) R) (hagree : ∀ x ∈ E, f x = g x)
(x₀ : ℝ) (hx₀ : x₀ ∈ Set.Ioo (-R) R) (hlim : x₀ ∈ closure (E \ {x₀})) :
∀ n, a n = b n := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, p. 177, Theorem 8.5
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be two coefficient sequences, let , and let be such that for every with the partial sums of converge to and those of converge to . Let be a set on which and agree: for all . Suppose further that there is a point lying in the closure of (i.e. is a limit point of , whether or not ).
Then for every .
The conclusion is equality of all coefficients, not merely of the sum functions. Convergence is assumed on the full open interval for both series.
Human review
Confirmed by the mission captain (proposal self-audit).