bernoulli_event_prob_singleton_mem
ProvedSource: Candès--Recht, Exact Matrix Completion via Convex Optimization, PDF p. 18, Section 4.1, equations (4.3)--(4.4).
Mathematical statement. In the independent Bernoulli observation model on the coordinate set , every fixed coordinate has marginal inclusion probability :
Variables and notation. The dimensions are . The sample set is sampled with the Bernoulli product weight from equations (4.3)--(4.4). The parameter is the Bernoulli inclusion rate, usually in the matrix-completion route. The coordinate is fixed. This node does not involve , , , or except as downstream matrix-completion notation.
Formalization note. This is a source-derived theorem from the Bernoulli product model, not a new analytic concentration theorem and not an uncited decomposition. It formalizes the singleton marginal implied by Candès--Recht PDF p. 18, Section 4.1, equations (4.3)--(4.4). It is intended as reusable Bernoulli-model bookkeeping for source-backed parents and for local audits of generic Talagrand leaves that require exact one-coordinate event probabilities.
import Definitions.Def_matrix_completion_bernoulli import Mathlib.Algebra.BigOperators.Group.Finset.Powerset import Mathlib.Data.Fintype.Powerset import Mathlib.Tactic open MatrixCompletion open scoped Classical BigOperators
theorem bernoulli_event_prob_singleton_mem
{n₁ n₂ : ℕ} (p : ℝ) (x : Fin n₁ × Fin n₂) :
bernoulliEventProb p (fun Ω : Finset (Fin n₁ × Fin n₂) => x ∈ Ω) = p := by
sorry