variance_partialIntegral_le_integral_variance
ProvedLet and be probability measures on measurable spaces and , and let be square-integrable on the product. Write the -partial average . Then the -variance of the partial average is bounded by the -average of the fiberwise -variances:
This is the convexity-of-variance / conditional-Jensen (ANOVA) inequality read for a product measure, where conditioning on the second factor is the partial integral over the first. It is the per-step Jensen estimate that drives the Efron–Stein tensorization of variance. The proof centers by subtracting its first-factor partial integral and applies the conditional Jensen inequality for the convex map to the conditional expectation given the second factor. Source: R. van Handel, Probability in High Dimension (APC 550), §2.1 (proof of Thm 2.3); Boucheron–Lugosi–Massart, Concentration Inequalities (OUP 2013), Ch. 3.
import Mathlib.Probability.CondVar import Mathlib.Probability.Moments.Variance import Mathlib.MeasureTheory.Function.ConditionalExpectation.CondJensen import Mathlib.Analysis.Convex.Mul import Mathlib.MeasureTheory.Constructions.Pi import Mathlib.MeasureTheory.Integral.Prod import Mathlib.MeasureTheory.Measure.Prod open MeasureTheory ProbabilityTheory Filter Set Function open scoped ENNReal NNReal BigOperators
theorem variance_partialIntegral_le_integral_variance
{β γ : Type*} [MeasurableSpace β] [MeasurableSpace γ]
(ρ : Measure β) [IsProbabilityMeasure ρ] (σ : Measure γ) [IsProbabilityMeasure σ]
{W : β × γ → ℝ} (hW : MemLp W 2 (ρ.prod σ)) :
variance (fun y => ∫ x, W (x, y) ∂ρ) σ
≤ ∫ x, variance (fun y => W (x, y)) σ ∂ρ := by sorry