dlp_four_corner_sigma_average_eq_copy_sum_k2
OpenConcrete σ-average identity (de la Peña–Montgomery-Smith, Ann. Probab. 23 (1995), 806–816; arXiv:math/9309211, §4). At the two distinct indices the σ-block is the four sign configurations , each with uniform weight (modelled by dlpSignVal : Fin 2 → ℝ, , ). Averaging the eq-(4) four-corner σ-randomized term over this block recovers the plain four-corner copy-sum — the inner summand of . This is the pointwise (per index pair) form of : the σ-cross-terms cancel because each is symmetric mean-zero, so the uniform σ-average of the four sign products equals . Combined with the σ-conditional-expectation substrate (dlp_sigma_randomization_condexp_eq_sigma_integral) — which identifies with the σ-average — this yields the conditional-expectation form of .
import Definitions.Def_dlp_sigma_randomization
import Mathlib.Analysis.Normed.Module.Basic
import Mathlib.Algebra.BigOperators.Fin
open MatrixCompletion
open scoped BigOperators Classical
/-- `{±1}`-valued sign at one slot, indexed by the 2-point set of sign
configurations (`0 ↦ +1`, `1 ↦ -1`). -/
noncomputable def dlpSignVal (b : Fin 2) : ℝ := if b = 0 then 1 else -1theorem dlp_four_corner_sigma_average_eq_copy_sum_k2
{V : Type*} [NormedAddCommGroup V] [NormedSpace ℝ V]
(l₁ l₂ : Fin 2) (f : Fin 2 → Fin 2 → V) :
(1 / 4 : ℝ) • ∑ b₁ : Fin 2, ∑ b₂ : Fin 2,
(4 : ℝ) • f (dlpCopyPerm (dlpSignVal b₁) l₁) (dlpCopyPerm (dlpSignVal b₂) l₂)
= ∑ j₁ : Fin 2, ∑ j₂ : Fin 2, f j₁ j₂ := by sorry