bernoulli_paley_zygmund_meanzero_positivity
Provedbernoullicauchy-schwarzde-la-penamatrix-completionpaley-zygmundsecond-moment-method
Paley–Zygmund positivity (de la Peña–Montgomery-Smith Proposition 1, real-valued base case) on the discrete Bernoulli powerset measure. For an inclusion probability and a mean-zero real statistic of the Bernoulli observation set (), the probability of nonnegativity is lower-bounded by the squared first moment over the second moment (product form, no division):
Equivalently . Proof: mean-zero gives ; then Cauchy–Schwarz with the indicator (whose square equals itself) gives . This is the Paley–Zygmund lower-tail brick consumed by de la Peña's Lemma 2 / the decoupling lower-bound proof.
Preamble
import Definitions.Def_matrix_completion_bernoulli import Mathlib.Algebra.BigOperators.Ring.Finset import Mathlib.Algebra.Order.BigOperators.Ring.Finset import Mathlib.Analysis.SpecialFunctions.Sqrt open MatrixCompletion open scoped Classical BigOperators
Formal statement
theorem bernoulli_paley_zygmund_meanzero_positivity
{n₁ n₂ : ℕ} (p : ℝ)
(F : Finset (Fin n₁ × Fin n₂) → ℝ) :
0 ≤ p → p ≤ 1 →
bernoulliExpectation p F = 0 →
(bernoulliExpectation p (fun Ω => |F Ω|)) ^ 2 ≤
4 * bernoulliExpectation p (fun Ω => (F Ω) ^ 2) *
bernoulliEventProb p (fun Ω => 0 ≤ F Ω) := by sorrySource
de la Peña–Giné, Decoupling: From Dependence to Independence, Ch. 3, Proposition 1; de la Peña–Montgomery-Smith, Ann. Probab. 23 (1995) 806–816 (arXiv:math/9309211), Proposition 1 (p. 4).