Set-integral disintegration for a measure followed by a kernel
ProvedMarkovChainCLT.setIntegral_measure_comp_kerneldisintegrationintegrationkernelmeasure-theory
Let be a -finite measure and let be an -finite transition kernel. If is integrable on a measurable set under the composed measure , then its set integral disintegrates as
This is the measure-level specialization of the kernel composition integral theorem used to disintegrate finite-prefix trajectory measures.
Preamble
import Mathlib.Probability.Kernel.Composition.IntegralCompProd open MeasureTheory ProbabilityTheory
Formal statement
theorem MarkovChainCLT.setIntegral_measure_comp_kernel
{A B : Type*} [MeasurableSpace A] [MeasurableSpace B]
(mu : Measure A) [SFinite mu]
(eta : Kernel A B) [IsSFiniteKernel eta]
{f : B → ℝ} {s : Set B}
(hs : MeasurableSet s) (hf : IntegrableOn f s (eta ∘ₘ mu)) :
∫ z in s, f z ∂(eta ∘ₘ mu) = ∫ x, ∫ y in s, f y ∂eta x ∂mu := by sorrySource
Mathlib, Probability.Kernel.Composition.IntegralCompProd, theorem ProbabilityTheory.Kernel.setIntegral_comp; the measure-kernel specialization is the standard Fubini/disintegration formula for composed kernels.