bernoulli_cube_linear_functional_variance_eq
Provedconcentrationefron-steinmatrix-completionprobabilityvariance
-proxy on the finite Bernoulli product cube (capstone). On the product Bernoulli cube with the independent-coordinate measure , the variance of the linear functional equals
This is the variance-aware proxy — exactly the distribution-dependent second moment that the worst-case bounded-difference constant over-estimates by the factor in the sparse regime. It is obtained by tensorization of variance over the product measure (the per-coordinate variances of the independent Bernoulli summands add), each per-coordinate term being . This grounds the variance hypothesis that downstream -aware concentration (modified log-Sobolev / Talagrand) takes as given.
Preamble
import Mathlib.Probability.Moments.Variance import Mathlib.Probability.ProbabilityMassFunction.Constructions import Mathlib.Probability.ProbabilityMassFunction.Integrals open MeasureTheory ProbabilityTheory open scoped ENNReal NNReal BigOperators
Formal statement
theorem bernoulli_cube_linear_functional_variance_eq
{ι : Type*} [Fintype ι] (p : ℝ≥0) (h : p ≤ 1) (coeff : ι → ℝ) :
variance (fun ω : ι → Bool => ∑ i, coeff i * (cond (ω i) 1 0 : ℝ))
(Measure.pi (fun _ : ι => (PMF.bernoulli p h).toMeasure))
= (∑ i, (coeff i) ^ 2) * ((p : ℝ) * (1 - p)) := by sorrySource
R. van Handel, Probability in High Dimension (APC 550, Princeton), §2.1, Theorem 2.3 (tensorization of variance); Boucheron–Lugosi–Massart, Concentration Inequalities, Ch. 3, Theorem 3.1.