rademacher_bilinear_chaos_l4_l2_bonami_hypercontractivity
ProvedDegree-2 (bilinear) Rademacher-chaos hypercontractivity (Bonami's lemma, ). For a purely-bilinear, off-diagonal (tetrahedral) Rademacher chaos in independent symmetric signs , , the fourth moment is dimension-free controlled by the square of the second moment:
i.e. (the Bonami constant at , in fourth-moment form ). The signs are the symmetric () Rademacher variables under the uniform expectation rademacherExpectation. This is the -randomized degree-2 chaos hypercontractivity that de la Peña–Montgomery-Smith 1995 Lemma 2 invokes ("since the 's are hypercontractive, by equation (1.4) of Kwapień and Szulga (1991)"), supplying the constant to the assembled Lemma-2 lower bound. Its proof is the Bonami two-point inequality (the base case) tensorized over the discrete cube and projected to degree 2 — genuinely Mathlib-absent infrastructure (rev c5ea003 has zero hypercontractivity / zero Bonami two-point inequality / zero Rademacher-chaos moment comparison). The true sup of is (numerically verified), well within 81.
import Definitions.Def_matrix_completion_rademacher open MatrixCompletion open scoped BigOperators Classical
theorem rademacher_bilinear_chaos_l4_l2_bonami_hypercontractivity
{n₁ n₂ : ℕ} (a : (Fin n₁ × Fin n₂) → (Fin n₁ × Fin n₂) → ℝ) :
rademacherExpectation (n1 := n₁) (n2 := n₂)
(fun eps =>
(∑ w1 : Fin n₁ × Fin n₂, ∑ w2 : Fin n₁ × Fin n₂,
(if w1 = w2 then (0 : ℝ)
else a w1 w2 * rademacherSign eps w1.1 w1.2
* rademacherSign eps w2.1 w2.2)) ^ 4) ≤
81 * (rademacherExpectation (n1 := n₁) (n2 := n₂)
(fun eps =>
(∑ w1 : Fin n₁ × Fin n₂, ∑ w2 : Fin n₁ × Fin n₂,
(if w1 = w2 then (0 : ℝ)
else a w1 w2 * rademacherSign eps w1.1 w1.2
* rademacherSign eps w2.1 w2.2)) ^ 2)) ^ 2 := by sorry