Theorem 11.35 — the Schwarz inequality in
ProvedRudin.ch11_schwarzanalysismeasure-theory
If then is integrable and .
Preamble
import Mathlib import Definitions.Def_Rudin_ch11_L2 open Filter Topology MeasureTheory
Formal statement
namespace Rudin
/-- Rudin, Theorem 11.35 (Schwarz inequality in `ℒ²`): if `f, g ∈ ℒ²(μ)` then `f g` is
integrable and `|∫ f g dμ| ≤ ‖f‖₂ ‖g‖₂`. -/
theorem ch11_schwarz {X : Type*} [MeasurableSpace X] (μ : Measure X) (f g : X → ℝ)
(hf : MemL2 μ f) (hg : MemL2 μ g) :
Integrable (fun x => f x * g x) μ ∧
|∫ x, f x * g x ∂μ| ≤ L2Norm μ f * L2Norm μ g := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 11, p. 326, Theorem 11.35
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be a measurable space with measure and let each belong to , meaning each is measurable and has integrable square. Then both:
- the pointwise product is integrable with respect to ;
The norms are the square roots of the integrals of the squares (real square root, so nonnegative); no almost-everywhere or equivalence-class considerations enter, the statement being about the functions themselves.
Human review
Confirmed by the mission captain (proposal self-audit).