a0_implies_tangent_sampling_talagrand_increment_and_variance_bounds_min
ProvedThis is a formal bridge for the min-dimension Talagrand route in the tangent-sampling branch.
Source: Candes--Recht, Exact Matrix Completion via Convex Optimization, PDF p. 18, Section 4.2, equation (4.8), for the tangent-coordinate Frobenius estimate, together with Appendix 9.1, PDF p. 46, Theorem 9.1 / equation (9.2), for the bounded-increment and variance hypotheses used in Talagrand's inequality.
Mathematical statement: let M be an rank- matrix with SVD data S, let , and let be the Bernoulli sampling rate. If , , , , , and holds, then both Talagrand input hypotheses hold at the concrete Candes--Recht scale
In Lean this is the conjunction
Formalization note: this is a formal bridge, not a new concentration theorem and not a theorem stated verbatim in the paper. It composes the source-backed parent theorem a0_implies_tangent_coordinate_frobenius_bound_min with the source-backed children tangent_sampling_talagrand_increment_bound_from_coordinate_bound_min and tangent_sampling_talagrand_variance_bound_from_coordinate_bound_min. The purpose is to package the already-proved min-dimension route and avoid the stale max-coordinate branch.
import Theorems.Thm_a0_implies_tangent_coordinate_frobenius_bound_min import Theorems.Thm_tangent_sampling_talagrand_increment_bound_from_coordinate_bound_min import Theorems.Thm_tangent_sampling_talagrand_variance_bound_from_coordinate_bound_min open MatrixCompletion
theorem a0_implies_tangent_sampling_talagrand_increment_and_variance_bounds_min :
∀ (n₁ n₂ r m : ℕ) (M : Matrix (Fin n₁) (Fin n₂) ℝ)
(μ₀ : ℝ) (S : SVD M r),
0 < n₁ → 0 < n₂ → 0 < r → 0 < m → m ≤ n₁ * n₂ →
1 ≤ μ₀ → A0 S μ₀ →
TangentSamplingTalagrandIncrementBound S
((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ)))
(2 * μ₀ * (↑(max n₁ n₂)) * (r : ℝ) / (m : ℝ)) ∧
TangentSamplingTalagrandVarianceBound S
((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ)))
(2 * μ₀ * (↑(max n₁ n₂)) * (r : ℝ) / (m : ℝ)) := by sorry