Theorem 11.42 — the Riesz–Fischer theorem
ProvedRudin.ch11_riesz_fischeranalysismeasure-theory
is complete: if is a Cauchy sequence in , then there is an with .
Preamble
import Mathlib import Definitions.Def_Rudin_ch11_L2 open Filter Topology MeasureTheory
Formal statement
namespace Rudin
/-- Rudin, Theorem 11.42 (Riesz–Fischer): every Cauchy sequence in `ℒ²(μ)` converges in the mean
to a function of `ℒ²(μ)`; that is, `ℒ²(μ)` is complete. -/
theorem ch11_riesz_fischer {X : Type*} [MeasurableSpace X] (μ : Measure X) (f : ℕ → X → ℝ)
(hmem : ∀ n, MemL2 μ (f n)) (hcauchy : CauchyL2 μ f) :
∃ g : X → ℝ, MemL2 μ g ∧ TendstoL2 μ f g := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 11, p. 329, Theorem 11.42
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be a measurable space with measure and let be functions such that:
- every lies in , i.e. is measurable with integrable square;
- the sequence is Cauchy in the norm: for every there is with
Then there exists a function such that and in the mean:
The limit is produced as an honest function, not an equivalence class, and is not claimed to be unique (any modification on a null set would serve equally); no pointwise or almost-everywhere convergence is asserted.
Human review
Confirmed by the mission captain (proposal self-audit).