bernoulli_sampled_row_count_max_moment_bound
ProvedRole. It controls sampled row/column counts or energies, which feed the moment bounds for random sampled matrices.
Problem and notation. Exact matrix completion asks when an unknown low-rank real matrix can be recovered from a random subset of its entries. Here has rank , entries are observed, and . Recovery means nuclear-norm minimization: minimize among matrices agreeing with on the observed entries. Probability notation. is the fixed-cardinality success probability: is chosen uniformly among all subsets of entries with , and the event is that the convex program uniquely returns . In Bernoulli nodes, or means each entry is sampled independently with probability , usually . Coherence notation. The object records SVD/singular-vector data for . The hypotheses and are the Candes-Recht incoherence assumptions: measures how spread out the singular vector spaces are, and measures the largest entry of the sign matrix . The parameter controls polynomial failure probabilities such as . For sampled row/column nodes, counts observed entries in row , counts observed entries in column , and the corresponding energies sum over sampled entries. These estimates feed the noncommutative Khintchine and spectral-norm concentration bounds.
Claim. Binomial maximum-count moment bound behind the row half of Lemma 6.2. This is the Appendix 9.2 estimate applied to the maximum number of observations in any row.
Lecture-note formulation:
The constants in this node are universal existential constants; the theorem asserts that some positive constants with these roles exist.
Decomposition status. A corresponding proof sketch reduces this node to smaller mathematical subclaims. The checked reduction uses 2 subclaims: Bernoulli sampled row count max large deviation bound; Bernoulli sampled row count max moment from large deviation bound.
import Definitions.Def_matrix_completion_sampled_counts open MatrixCompletion
theorem bernoulli_sampled_row_count_max_moment_bound :
∃ Ccount : ℝ, 0 < Ccount ∧
∀ (β : ℝ), 2 < β →
∀ (n₁ n₂ m q : ℕ),
0 < n₁ → 0 < n₂ → m ≤ n₁ * n₂ →
1 ≤ q →
(q : ℝ) ≥ β * Real.log (↑(max n₁ n₂)) →
(q : ℝ) ≤
((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))) * (↑(max n₁ n₂)) →
bernoulliExpectation ((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ)))
(fun Omega : Finset (Fin n₁ × Fin n₂) =>
sampledRowCountMax Omega ^ q) ≤
(Ccount * ((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))) *
(↑(max n₁ n₂))) ^ q := by
sorry