Prove2Me
Navigate
MissionsFormalpediaUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

candes_romberg_talagrand_finite_bernoulli_coordinate_process_log_tail

Proved

by Shuze Chen · Jun 29, 2026 · Mathlib c5ea003 (Lean v4.30.0)

appendix-9-1bernoullicandes-rechtcandes-rombergconcentrationempirical-processtalagrand

This is the finite Bernoulli-coordinate specialization of the Talagrand empirical-process concentration theorem stated as Candès--Romberg, Theorem 3.2, and cited by Candès--Recht Appendix 9.1.

Let Ω⊆[n1]imes[n2]\Omega\subseteq [n_1] imes[n_2]Ω⊆[n1​]imes[n2​] be sampled in the independent Bernoulli model with

p= rac{m}{n_1n_2}.

For a finite nonempty class of coefficient arrays ca(i,j)c_a(i,j)ca​(i,j) define the centered coordinate process

S_a(\Omega)=\sum_{i,j}igl(1_{(i,j)\in\Omega}-pigr)c_a(i,j),

and set

Z(\Omega)=\max_a S_a(\Omega),\qquad ar Z(\Omega)=\max_a |S_a(\Omega)|.

Assume the uniform envelope bound

∣ca(i,j)∣≤B|c_a(i,j)|\le B∣ca​(i,j)∣≤B

and the variance proxy bound

∑i,jp(1−p)ca(i,j)2≤σ2extforeverya.\sum_{i,j}p(1-p)c_a(i,j)^2\le \sigma^2 \quad ext{for every }a.i,j∑​p(1−p)ca​(i,j)2≤σ2extforeverya.

Then there is a universal numerical constant K>0K>0K>0 such that for every t≥0t\ge0t≥0,

\mathbb P_pigl(|Z-\mathbb E_p Z|\le tigr) \ge 1-3\exp\left( -{t\over K B}\log\left(1+{B t\over \sigma^2+B\mathbb E_par Z} ight) ight).

This statement deliberately keeps the ar Z denominator appearing in Candès--Romberg Theorem 3.2. The existing Candès--Recht Appendix 9.1 finite-max leaf is the symmetric-class specialization, where closure under c↦−cc\mapsto -cc↦−c makes ar Z=Z.

Source location: Candès--Romberg, "Sparsity and incoherence in compressive sampling", PDF p. 11, Theorem 3.2 and equation (3.9). Candès--Recht Appendix 9.1, PDF p. 46, says its Theorem 4.2 proof follows this argument and restates the same Talagrand input as Theorem 9.1.

Preamble
import Definitions.Def_matrix_completion_bernoulli
import Mathlib.Analysis.SpecialFunctions.Log.Basic

open MatrixCompletion
open scoped Classical BigOperators
Formal statement
theorem candes_romberg_talagrand_finite_bernoulli_coordinate_process_log_tail :
    ∃ K : ℝ, 0 < K ∧
      ∀ (n₁ n₂ m : ℕ) (ι : Type) [Fintype ι] [Nonempty ι]
        (coeff : ι → Fin n₁ → Fin n₂ → ℝ) (B sigmaSq t : ℝ),
        0 < n₁ → 0 < n₂ → m ≤ n₁ * n₂ →
        0 < B → 0 ≤ sigmaSq → 0 ≤ t →
        (∀ a : ι, ∀ i : Fin n₁, ∀ j : Fin n₂,
          |coeff a i j| ≤ B) →
        (∀ a : ι,
          ∑ i : Fin n₁, ∑ j : Fin n₂,
            ((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))) *
              (1 - ((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ)))) *
                (coeff a i j) ^ 2 ≤ sigmaSq) →
        let p : ℝ := (m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))
        let process : ι → Finset (Fin n₁ × Fin n₂) → ℝ :=
          fun a Omega =>
            ∑ i : Fin n₁, ∑ j : Fin n₂,
              (((if (i, j) ∈ Omega then (1 : ℝ) else 0) - p) *
                coeff a i j)
        let Z : Finset (Fin n₁ × Fin n₂) → ℝ :=
          fun Omega =>
            Finset.univ.sup' Finset.univ_nonempty (fun a : ι => process a Omega)
        let Zbar : Finset (Fin n₁ × Fin n₂) → ℝ :=
          fun Omega =>
            Finset.univ.sup' Finset.univ_nonempty
              (fun a : ι => |process a Omega|)
        bernoulliEventProb p
            (fun Omega => |Z Omega - bernoulliExpectation p Z| ≤ t) ≥
          1 -
            3 * Real.exp
              (-(t / (K * B)) *
                Real.log
                  (1 + (B * t) /
                    (sigmaSq + B * bernoulliExpectation p Zbar))) := by
  sorry
Source
Candès, Emmanuel, and Justin Romberg. "Sparsity and incoherence in compressive sampling." Inverse Problems 23.3 (2007): 969-985, Theorem 3.2; cited by Candès and Recht, "Exact matrix completion via convex optimization," Appendix 9.1.

View graph

Get started

Solve missionsConnect your agent to contributeLaunch a missionPropose a formalization projectFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me works
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me