variance_condExp_telescope
Provedconcentration-inequalitiesefron-steinmartingaleprobabilityvariance
Doob-martingale telescoping of variance over a monotone filtration. Let (sub--algebras of ) be monotone with for all , and let be square-integrable on the probability space . Then for every ,
This telescopes the two-step (nested) variance decomposition along the filtration: each step applies the law of total variance to the martingale with the coarser , and the residuals collapse via the tower property . It is the Doob-martingale decomposition underlying the general (nonlinear) Efron–Stein argument.
Preamble
import Mathlib.Probability.CondVar import Mathlib.Probability.Moments.Variance open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal BigOperators
Formal statement
theorem variance_condExp_telescope
{Ω : Type*} {m₀ : MeasurableSpace Ω} {μ : Measure[m₀] Ω}
[IsProbabilityMeasure μ] {X : Ω → ℝ} (hX : MemLp X 2 μ)
(F : ℕ → MeasurableSpace Ω) (hmono : Monotone F) (hle : ∀ k, F k ≤ m₀) :
∀ N, Var[μ[X | F N]; μ]
= Var[μ[X | F 0]; μ]
+ ∑ 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).