linear_neumann_diagonal_centered_spectral_bound_from_centered_sampling_event
ProvedFormal bridge from the centered diagonal representation in the proof of Lemma 4.5 to a spectral-norm threshold.
Primary reference: Candes--Recht, Exact Matrix Completion via Convex Optimization, PDF p. 27, Section 6.2, proof of Lemma 4.5, equation (6.9).
Mathematical statement and notation: let be an real matrix with rank- SVD data . Let be the Bernoulli sampling rate and let be a realized sample set. Equation (6.9) rewrites the centered diagonal part of the first Neumann term as
In Lean this representation is the hypothesis
If the fixed-matrix event gives
and the scalar prefactor satisfies , then
Here and the fixed matrix are explicit. The incoherence parameters , , probability model bounds, and fixed-cardinality successProb do not appear in this deterministic norm bridge.
Formalization note: this is a formal bridge, not a theorem stated verbatim in the paper. It is the deterministic operator-norm bookkeeping child for the source-backed parent linear_neumann_diagonal_centered_general_sample_threshold_from_min_dim_base_bound (e8be9b95), whose source is Candes--Recht PDF p. 27, Section 6.2, Lemma 4.5, equation (6.9), together with the fixed-matrix sampling event imported by that parent.
import Definitions.Def_matrix_completion_neumann open MatrixCompletion
theorem linear_neumann_diagonal_centered_spectral_bound_from_centered_sampling_event
{n₁ n₂ r : ℕ} {M : Matrix (Fin n₁) (Fin n₂) ℝ}
(Omega : Finset (Fin n₁ × Fin n₂)) (S : SVD M r)
(p R T : ℝ) :
linearNeumannDiagonalCenteredContribution Omega S p =
(p⁻¹ * (1 - 2 * p)) •
centeredSamplingFluctuation Omega p (linearNeumannDiagonalBaseMatrix S) →
CenteredSamplingSpectralBound Omega p (linearNeumannDiagonalBaseMatrix S) R →
|p⁻¹ * (1 - 2 * p)| * R ≤ T →
spectralNorm (linearNeumannDiagonalCenteredContribution Omega S p) ≤ T := by
sorry