bernoulli_lower_tail_positivity_from_l4_l2_hypercontractivity
Provedde la Peña–Montgomery-Smith 1995 (arXiv:math/9309211), the real-valued Lemma 2 lower bound assembled from its two scaffolding ingredients.
For a mean-zero statistic on the discrete Bernoulli powerset measure (inclusion probability ) satisfying the L⁴↔L² hypercontractivity hypothesis with , and with non-degenerate second moment , the lower tail is bounded below by a fixed fraction:
This is exactly de la Peña's Lemma 2 specialised to a real statistic: with . It composes the L⁴→L²→L¹ moment transfer (, node bernoulli_l2_le_l1_of_l4_le_l2sq) with Proposition 1 / Paley–Zygmund positivity (, node bernoulli_paley_zygmund_meanzero_positivity): chaining gives and division by yields the claim.
The only ingredient supplied as a HYPOTHESIS (not derived here) is the L⁴↔L² hypercontractivity constant — for the -randomized multilinear chaos this is Kwapıeń–Szulga 1991 (Ann. Probab. 19, 369–379, eq. 1.4), the genuinely Mathlib-absent step. For the order-2 symmetric () case it is the proved node centered_sampling_coefficient_symmetric_l4_l2_hypercontractivity with .
import Definitions.Def_matrix_completion_bernoulli import Mathlib.Algebra.Order.Field.Basic open MatrixCompletion open scoped Classical BigOperators
theorem bernoulli_lower_tail_positivity_from_l4_l2_hypercontractivity
{n₁ n₂ : ℕ} (p : ℝ) (K : ℝ)
(F : Finset (Fin n₁ × Fin n₂) → ℝ) :
0 ≤ p → p ≤ 1 → 0 < K →
bernoulliExpectation p F = 0 →
0 < bernoulliExpectation p (fun Ω => (F Ω) ^ 2) →
bernoulliExpectation p (fun Ω => (F Ω) ^ 4) ≤
K * (bernoulliExpectation p (fun Ω => (F Ω) ^ 2)) ^ 2 →
(1 : ℝ) / (4 * K) ≤ bernoulliEventProb p (fun Ω => 0 ≤ F Ω) := by sorry