dlp_eq4_centered_indicator_randomization_k2
OpenConcrete matrix-model instantiation of the de la Peña–Montgomery-Smith σ-randomization identity, equation (4) of Section 4 of Decoupling Inequalities for the Tail Probabilities of Multivariate U-Statistics (Ann. Probab. 23 (1995) 806–816, arXiv:math/9309211), specialized to order on the Bernoulli powerset sampling model. For the scalar two-copy product of centered indicators with centeredIndicator, reading the -th of the two i.i.d. observation copies via copySelect ( at , at ), and the σ-permuted decoupled -copies , the four-corner identity holds: . This is pure algebra: a direct specialization (to and the centered-indicator statistic) of the already-proved abstract four-corner randomization dlp_eq4_four_corner_randomization_k2. It supplies the -randomization (eq 4) step of the de la Peña pair-decoupling forward bound bernoulli_pair_decoupling_spectral_tail_bound_offdiag on the concrete model.
import Definitions.Def_matrix_completion_neumann import Definitions.Def_dlp_sigma_randomization open MatrixCompletion open scoped BigOperators Classical
noncomputable def dlpEq4CICopySelect {n1 n2 : Nat}
(Omega1 Omega2 : Finset (Fin n1 × Fin n2)) (j : Fin 2) :
Finset (Fin n1 × Fin n2) :=
if j = 0 then Omega1 else Omega2
theorem dlp_eq4_centered_indicator_randomization_k2
{n1 n2 : Nat}
(Omega1 Omega2 : Finset (Fin n1 × Fin n2)) (p : ℝ)
(w1 w2 : Fin n1 × Fin n2)
(sigma1 sigma2 : ℝ) (hs1 : sigma1 = 1 ∨ sigma1 = -1) (hs2 : sigma2 = 1 ∨ sigma2 = -1)
(l1 l2 : Fin 2) :
(4 : ℝ) *
(centeredIndicator (dlpEq4CICopySelect Omega1 Omega2 (dlpCopyPerm sigma1 l1)) p w1.1 w1.2 *
centeredIndicator (dlpEq4CICopySelect Omega1 Omega2 (dlpCopyPerm sigma2 l2)) p w2.1 w2.2)
= ∑ j1 : Fin 2, ∑ j2 : Fin 2,
((1 + dlpCornerSign j1 l1 * sigma1) * (1 + dlpCornerSign j2 l2 * sigma2)) *
(centeredIndicator (dlpEq4CICopySelect Omega1 Omega2 j1) p w1.1 w1.2 *
centeredIndicator (dlpEq4CICopySelect Omega1 Omega2 j2) p w2.1 w2.2) := by sorry