Theorems 8.11-8.12 — best mean-square approximation and Bessel's inequality
DisprovedRudin.ch08_besselanalysisfourier-analysis
Let be orthonormal on and let be the Fourier coefficients of . Among all combinations , the choice minimizes ; and for every (Bessel's inequality).
Preamble
import Mathlib import Definitions.Def_Rudin_ch08_fourier open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorems 8.11 and 8.12: among all linear combinations of `φ 0, …, φ (n-1)` the
partial sum of the Fourier series of `f` is the best approximation in the mean square sense, and
Bessel's inequality `∑ |cₘ|² ≤ ∫ |f|²` holds. -/
theorem ch08_bessel (a b : ℝ) (hab : a ≤ b) (φ : ℕ → ℝ → ℂ) (hφ : IsOrthonormalSystem φ a b)
(f : ℝ → ℂ) (n : ℕ) (γ : ℕ → ℂ) :
(∫ x in a..b, ‖f x - ∑ m ∈ Finset.range n, genFourierCoeff f φ a b m * φ m x‖ ^ 2) ≤
(∫ x in a..b, ‖f x - ∑ m ∈ Finset.range n, γ m * φ m x‖ ^ 2) ∧
(∑ m ∈ Finset.range n, ‖genFourierCoeff f φ a b m‖ ^ 2) ≤ ∫ x in a..b, ‖f x‖ ^ 2 := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, pp. 187-188, Theorems 8.11 and 8.12
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be reals, let be an orthonormal system on — i.e. for and — let be any function, let and let be arbitrary complex numbers. Write for the Fourier coefficients of relative to . Then both:
- Least squares optimality.
- Bessel's inequality.
Both sums run over and both statements are asserted for every , including where the sums are empty. No integrability hypothesis is placed on ; all integrals are oriented interval integrals against Lebesgue measure, which evaluate to for non-integrable integrands.
Human review
Confirmed by the mission captain (proposal self-audit).