a0_implies_default_a1_parameter
ProvedCauchy--Schwarz consequence of Candes--Recht incoherence A0: A0 implies A1 with the default parameter .
Primary reference: Candes--Recht, Exact Matrix Completion via Convex Optimization, PDF p. 6, Section 1.2, Definition 1.2 and the paragraph before Theorem 1.3, with Theorem 1.3 equation (1.9). The paper states that if holds, then holds with by Cauchy--Schwarz.
Mathematical statement and notation: let be rank- SVD data for an real matrix . Assumption means
The sign matrix is
The theorem proves that for and ,
for all , which is exactly in the local definitions.
Variables and unused quantities: are active. The sampling rate , sample set , random variable , ambient , Bernoulli/fixed-cardinality probability model, and successProb do not appear in this deterministic SVD-coherence bridge.
Formalization note: this is a source-derived theorem, not a theorem stated verbatim as a numbered lemma and not a purely formal Lean bridge. It packages the cited Candes--Recht Cauchy--Schwarz observation into a reusable Lean node for downstream source-backed Lemma 6.6 routes, including the structural all-distinct coefficient branch.
import Definitions.Def_matrix_completion_svd open MatrixCompletion
theorem a0_implies_default_a1_parameter :
∀ (n₁ n₂ r : ℕ) (M : Matrix (Fin n₁) (Fin n₂) ℝ)
(μ₀ : ℝ) (S : SVD M r),
0 < n₁ → 0 < n₂ → 0 < r →
0 ≤ μ₀ → A0 S μ₀ → A1 S (defaultA1Parameter μ₀ r) := by
sorry