Theorem 11.24 — the integral is a countably additive set function
ProvedRudin.ch11_integral_countably_additiveanalysismeasure-theory
If is integrable and are pairwise disjoint measurable sets with union , then , the series being convergent.
Preamble
import Mathlib import Definitions.Def_Rudin_ch11_L2 open Filter Topology MeasureTheory
Formal statement
namespace Rudin
/-- Rudin, Theorem 11.24: the integral of an integrable function is a countably additive set
function. -/
theorem ch11_integral_countably_additive {X : Type*} [MeasurableSpace X] (μ : Measure X)
(f : X → ℝ) (hf : Integrable f μ) (E : ℕ → Set X) (hE : ∀ n, MeasurableSet (E n))
(hdisj : Pairwise (Function.onFun Disjoint E)) :
HasSum (fun n => ∫ x in E n, f x ∂μ) (∫ x in ⋃ n, E n, f x ∂μ) := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 11, p. 315, Theorem 11.24
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be a measurable space with measure , let be integrable with respect to , and let be measurable subsets of that are pairwise disjoint. Then the family of numbers
is summable with sum — that is, the net of finite partial sums converges unconditionally to that value (a stronger assertion than convergence of the ordered partial sums).
Each integral is the Bochner integral of restricted to the indicated set. Integrability is assumed on the whole space, which in particular gives integrability on each .
Human review
Confirmed by the mission captain (proposal self-audit).