variance_eq_sum_expected_condVar
Provedconcentration-inequalitiesefron-steinmartingaleprobabilityvariance
Exact Efron–Stein tensorization of variance (Doob-martingale form). Let (sub--algebras of ) be a monotone filtration with (the trivial -algebra) and (the full -algebra), and let be square-integrable. Then
The total variance decomposes exactly into the sum, over the filtration steps, of the expected conditional variance contributed at each step. The boundary terms collapse: is the constant (variance ) and a.e. (variance ). Specializing to a coordinate filtration on a product space yields the Efron–Stein tensorization, with each summand the variance contributed by coordinate — the inductive heart of the general (nonlinear) 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 variance_eq_sum_expected_condVar
{Ω : Type*} {m₀ : MeasurableSpace Ω} {μ : Measure[m₀] Ω}
[IsProbabilityMeasure μ] {X : Ω → ℝ} (hX : MemLp X 2 μ)
(F : ℕ → MeasurableSpace Ω) (hmono : Monotone F) (hle : ∀ k, F k ≤ m₀)
(hbot : F 0 = ⊥) (N : ℕ) (htop : F N = m₀) :
Var[X; μ]
= ∑ k ∈ Finset.range N, μ[Var[μ[X | F (k+1)]; μ | F k]] := by sorrySource
R. van Handel, Probability in High Dimension (APC 550 lecture notes, Princeton), §2.1 Tensorization and bounded differences (Doob-martingale decomposition of variance); Boucheron-Lugosi-Massart, Concentration Inequalities (OUP 2013), Ch. 3 (Efron-Stein).