quadratic_neumann_all_distinct_inner_coefficient_pointwise_tail_from_base_bounds_min_dim
OpenCorrected min-dimension pointwise Bernstein child for the all-distinct inner coefficient in the quadratic Neumann term.
Primary reference: Candes--Recht, Exact Matrix Completion via Convex Optimization, PDF p. 28, Section 6.2, Lemma 6.6, equations (6.15)--(6.17), and PDF p. 30, Section 6.3, equation (6.20).
Mathematical statement and notation: let and let . The sample set is drawn from the independent Bernoulli model with rate , represented in Lean by bernoulliEventProb p. Let be the SVD data for an rank- matrix, with incoherence hypotheses and . For coordinates , equation (6.20) writes the inner all-distinct coefficient as the centered scalar sampling fluctuation
Assume the corrected rectangular Lemma 6.6 base bounds
and
Under the Lemma 6.6 sample lower bound
the fixed coordinate pair satisfies the pointwise tail
Here , the Bernoulli probability model, and the coefficient family are explicitly named; and successProb do not appear in this local coefficient theorem.
Formalization note: this is a source-derived theorem, not a theorem stated verbatim in the paper and not a formal bridge. It packages the scalar Bernstein calculation from Lemma 6.6 with the corrected min-dimension base estimates for the all-distinct inner coefficient from equation (6.20). It is intended as the source-backed analytic child for the formal bridge quadratic_neumann_all_distinct_inner_coefficients_from_base_bounds_min_dim_shifted.
import Definitions.Def_matrix_completion_neumann open MatrixCompletion
theorem quadratic_neumann_all_distinct_inner_coefficient_pointwise_tail_from_base_bounds_min_dim
(Centry Cfro : ℝ) :
0 < Centry → 0 < Cfro →
∃ Cpoint cpoint : ℝ, 0 < Cpoint ∧ 0 < cpoint ∧
∀ (β lam : ℝ), 2 < β → 1 ≤ lam →
∀ (n₁ n₂ r m : ℕ) (M : Matrix (Fin n₁) (Fin n₂) ℝ)
(μ₀ μ₁ : ℝ) (S : SVD M r),
0 < n₁ → 0 < n₂ → 0 < r → m ≤ n₁ * n₂ →
1 ≤ μ₀ → 1 ≤ μ₁ →
A0 S μ₀ → A1 S μ₁ →
(m : ℝ) ≥
lam * Real.rpow μ₀ ((4 : ℝ) / 3) *
(↑(max n₁ n₂)) * Real.rpow (r : ℝ) ((4 : ℝ) / 3) *
(β * Real.log (↑(max n₁ n₂))) →
(∀ (Omega3 : Finset (Fin n₁ × Fin n₂))
(w1 w2 : Fin n₁ × Fin n₂),
quadraticAllDistinctInnerCoefficient Omega3 S
((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))) w1 w2 =
matrixEntrySum
(centeredSamplingFluctuation Omega3
((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ)))
(quadraticAllDistinctInnerBaseMatrix S w1 w2))) →
(∀ w1 w2 : Fin n₁ × Fin n₂,
entrySupNorm (quadraticAllDistinctInnerBaseMatrix S w1 w2) ≤
Centry * μ₁ *
Real.sqrt ((r : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))) *
(μ₀ * (r : ℝ) / (↑(min n₁ n₂)))) →
(∀ w1 w2 : Fin n₁ × Fin n₂,
frobeniusNorm (quadraticAllDistinctInnerBaseMatrix S w1 w2) ≤
Cfro * μ₁ *
Real.sqrt ((r : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))) *
Real.sqrt (μ₀ * (r : ℝ) / (↑(min n₁ n₂)))) →
∀ w1 w2 : Fin n₁ × Fin n₂,
bernoulliEventProb ((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ)))
(fun Omega3 =>
|quadraticAllDistinctInnerCoefficient Omega3 S
((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))) w1 w2| ≤
Cpoint * Real.rpow lam (-((1 : ℝ) / 2))) ≥
1 - cpoint * Real.rpow (↑(max n₁ n₂)) (-β) := by
sorry