Theorem 8.1 — term-by-term differentiation of power series
ProvedRudin.ch08_power_series_derivativeanalysisseries
If converges for with sum , and is the sum of the differentiated series there, then is differentiable on with .
Preamble
import Mathlib import Definitions.Def_Rudin_ch03_series open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.1: if the power series `∑ cₙ xⁿ` converges for `|x| < R` and `f` is its
sum, then `f` is differentiable on `(-R, R)` and its derivative is obtained by term-by-term
differentiation. -/
theorem ch08_power_series_derivative (c : ℕ → ℝ) (R : ℝ) (hR : 0 < R)
(hconv : ∀ x : ℝ, |x| < R → SeriesConverges (fun n => c n * x ^ n))
(f : ℝ → ℝ) (hf : ∀ x : ℝ, |x| < R → SeriesConvergesTo (fun n => c n * x ^ n) (f x))
(g : ℝ → ℝ) (hg : ∀ x : ℝ, |x| < R →
SeriesConvergesTo (fun n => (n : ℝ) * c n * x ^ (n - 1)) (g x)) :
∀ x : ℝ, |x| < R → HasDerivAt f (g x) x := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, p. 173, Theorem 8.1
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let , let , and let . Assume:
- for every real with , the series converges (its partial sums have a real limit);
- for every such , the partial sums of converge to ;
- for every such , the partial sums of the term-by-term differentiated series, whose -th term is , converge to . Here is truncated natural subtraction, so the term is .
Then for every with , is differentiable at with derivative exactly .
and are arbitrary functions on all of constrained only on the interval by the hypotheses; nothing is asserted outside it, nor about uniform convergence or about .
Human review
Confirmed by the mission captain (proposal self-audit).