efron_stein_resampling_variance_identity
Provedconcentrationefron-steinprobabilityvariance
Resampling identity for the variance (Efron–Stein keystone). Let and be independent, identically distributed, square-integrable real random variables on a probability space. Then
Expanding the square and using independence () together with identical distribution (, ) gives . This is the elementary identity underpinning the Efron–Stein inequality via symmetric resampling, and is reusable wherever a resampling argument controls a variance.
Preamble
import Mathlib.Probability.Moments.Variance import Mathlib.Probability.Independence.Integration import Mathlib.Probability.IdentDistrib open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal BigOperators
Formal statement
theorem efron_stein_resampling_variance_identity
{Ω : Type*} {mΩ : MeasurableSpace Ω} {μ : Measure Ω}
[IsProbabilityMeasure μ] {W W' : Ω → ℝ}
(hW : MemLp W 2 μ) (hW' : MemLp W' 2 μ)
(hindep : IndepFun W W' μ) (hident : IdentDistrib W W' μ μ) :
variance W μ = (∫ ω, (W ω - W' ω) ^ 2 ∂μ) / 2 := by sorrySource
R. van Handel, Probability in High Dimension (APC 550, Princeton), §2.1, proof of Theorem 2.3; Boucheron–Lugosi–Massart, Concentration Inequalities (OUP 2013), Ch. 3, identity preceding Theorem 3.1.