Theorem 11.17 — suprema and upper limits of measurable functions
ProvedRudin.ch11_measurable_limitsanalysismeasure-theory
If are measurable, then and are measurable. As in Rudin the functions take values in the extended half-line, so both are always defined.
Preamble
import Mathlib import Definitions.Def_Rudin_ch11_L2 open Filter Topology MeasureTheory open scoped ENNReal
Formal statement
namespace Rudin
/-- Rudin, Theorem 11.17: the pointwise supremum and the upper limit of a sequence of measurable
functions are measurable. As in Rudin the functions take values in the extended half-line, so
that the supremum and the upper limit are always defined. -/
theorem ch11_measurable_limits {X : Type*} [MeasurableSpace X] (f : ℕ → X → ℝ≥0∞)
(hf : ∀ n, Measurable (f n)) :
Measurable (fun x => ⨆ n, f n x) ∧
Measurable (fun x => limsup (fun n => f n x) atTop) := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 11, p. 311, Theorem 11.17
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be a measurable space and let be functions into the extended nonnegative reals, each measurable. Then both:
- the pointwise supremum is measurable;
- the pointwise upper limit is measurable.
Both suprema and upper limits are taken in , where they always exist, so no boundedness hypothesis is needed. No measure is involved — this is purely about measurability with respect to the -algebra of and the Borel structure of .
Human review
Confirmed by the mission captain (proposal self-audit).