Theorems 11.16 and 11.18 — algebraic operations on measurable functions
ProvedRudin.ch11_measurable_opsanalysismeasure-theory
If and are measurable real functions, then , and are measurable.
Preamble
import Mathlib import Definitions.Def_Rudin_ch11_L2 open Filter Topology MeasureTheory
Formal statement
namespace Rudin
/-- Rudin, Theorems 11.16 and 11.18: if `f` and `g` are measurable then so are `|f|`, `f + g`
and `f g`. -/
theorem ch11_measurable_ops {X : Type*} [MeasurableSpace X] (f g : X → ℝ)
(hf : Measurable f) (hg : Measurable g) :
Measurable (fun x => |f x|) ∧ Measurable (fun x => f x + g x) ∧
Measurable (fun x => f x * g x) := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 11, pp. 311-312, Theorems 11.16 and 11.18
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be a measurable space and let be measurable. Then all three of the following functions are measurable:
- ;
- ;
- .
Measurability is with respect to the -algebra of and the Borel -algebra of . No measure and no integrability assumptions occur.
Human review
Confirmed by the mission captain (proposal self-audit).