Theorem 11.45 — Parseval's identity for a complete orthonormal system
ProvedRudin.ch11_parseval_completeanalysisfourier-analysismeasure-theory
Let be a complete orthonormal system in and let be the Fourier coefficients of . Then ; the Fourier series of converges to in the mean.
Preamble
import Mathlib import Definitions.Def_Rudin_ch11_L2 open Filter Topology MeasureTheory
Formal statement
namespace Rudin
/-- Rudin, Theorem 11.45: if `{φₙ}` is a complete orthonormal set in `ℒ²(μ)` and `cₙ` are the
Fourier coefficients of `f ∈ ℒ²(μ)`, then `∑ cₙ² = ∫ f² dμ` (Parseval's identity). -/
theorem ch11_parseval_complete {X : Type*} [MeasurableSpace X] (μ : Measure X) (φ : ℕ → X → ℝ)
(hmem : ∀ n, MemL2 μ (φ n))
(horth : ∀ m n, m ≠ n → (∫ x, φ m x * φ n x ∂μ) = 0)
(hnorm : ∀ n, (∫ x, (φ n x) ^ 2 ∂μ) = 1)
(hcomplete : ∀ g : X → ℝ, MemL2 μ g → (∀ n, (∫ x, g x * φ n x ∂μ) = 0) → L2Norm μ g = 0)
(f : X → ℝ) (hf : MemL2 μ f) (c : ℕ → ℝ) (hc : ∀ n, c n = ∫ x, f x * φ n x ∂μ) :
Tendsto (fun N => ∑ n ∈ Finset.range N, (c n) ^ 2) atTop (𝓝 (∫ x, (f x) ^ 2 ∂μ)) := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 11, p. 331, Theorems 11.43 and 11.45
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be a measurable space with measure and let satisfy:
- each lies in (measurable with integrable square);
- orthogonality: whenever ;
- normalization: for every ;
- completeness: for every , if for all , then (the norm vanishes; itself need not be the zero function).
Let and let be defined by the hypothesis for every . Then
i.e. the partial sums of the squares of the Fourier coefficients converge to the integral of .
The partial sum over omits the term ; the limit is asserted for the ordered partial sums.
Human review
Confirmed by the mission captain (proposal self-audit).