Documentation

ForMathlib.MeasureTheory.Measure.TrimInstances

Sigma-Finiteness for Trimmed Measures #

This file provides a lemma showing that μ.trim hm is sigma-finite when μ is finite.

Main Results #

Implementation Notes #

This lemma is useful when working with conditional expectations on sub-σ-algebras, where mathlib's condExp requires SigmaFinite (μ.trim hm).

Note: IsFiniteMeasure (μ.trim hm) is now provided by mathlib as an instance (MeasureTheory.Measure.isFiniteMeasure_trim), so we only need the sigma-finite corollary.

References #

theorem MeasureTheory.Measure.sigmaFinite_trim {Ω : Type u_1} {m₀ : MeasurableSpace Ω} (μ : Measure Ω) [IsFiniteMeasure μ] {m : MeasurableSpace Ω} (hm : m m₀) :

Trimmed measure is sigma-finite when the original measure is finite.

This is the instance typically needed for condExp on sub-σ-algebras. The finiteness of μ.trim hm is automatic via mathlib's isFiniteMeasure_trim instance.