condVar_sub_of_strongly_measurable_eq
Provedconcentration-inequalitiesefron-steinmartingaleprobabilityvariance
Conditional variance is shift-invariant by an -measurable function. Let be a finite measure space, a sub--algebra, square-integrable, and a square-integrable, -strongly-measurable function. Then
Subtracting an -measurable function does not change the conditional variance given , because (the -measurable pulls out of the conditional expectation), so the centered variable is unchanged. This is the shift-invariance underlying the per-coordinate step of the general Efron–Stein inequality.
Preamble
import Mathlib.Probability.CondVar import Mathlib.Probability.Moments.Variance open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal BigOperators
Formal statement
theorem condVar_sub_of_strongly_measurable_eq
{Ω : Type*} {m₀ m : MeasurableSpace Ω} {μ : Measure[m₀] Ω}
(hm : m ≤ m₀) [IsFiniteMeasure μ]
{X Y : Ω → ℝ} (hX : MemLp X 2 μ) (hY : MemLp Y 2 μ)
(hYm : StronglyMeasurable[m] Y) :
Var[fun ω => X ω - Y ω; μ | m] =ᵐ[μ] Var[X; μ | m] := by sorrySource
R. van Handel, Probability in High Dimension (APC 550 lecture notes, Princeton), §2.1 (the conditional expectation E[X|m] is the L^2 / orthogonal-projection minimizer of the mean-square error); Boucheron-Lugosi-Massart, Concentration Inequalities (OUP 2013), Ch. 3 Theorem 3.1 (the per-coordinate bound Var(Z | X^(i)) <= E[(Z - Z_i)^2 | X^(i)]).