linear_neumann_off_diagonal_coefficient_bound_small_with_lambda_fix
Openbernsteincandes-rechtconcentrationmatrix-completion
CR-faithful corrected off-diagonal first-Neumann coefficient bound (small-with-). Same as linear_neumann_off_diagonal_coefficient_bound_small_with_lambda but with the -linear sample lower bound (CR2009 Lemma 6.6 eq 6.15 / Thm 1.3 eq 1.9). With probability the off-diagonal first-Neumann coefficient spectral norm is bounded by .
Preamble
import Definitions.Def_matrix_completion_neumann open MatrixCompletion
Formal statement
theorem linear_neumann_off_diagonal_coefficient_bound_small_with_lambda_fix :
∃ Ccoef ccoef : ℝ, 0 < Ccoef ∧ 0 < ccoef ∧
∀ (β 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 * μ₁ * max μ₀ μ₁ *
(↑(max n₁ n₂)) * (r : ℝ) *
(β * Real.log (↑(max n₁ n₂))) →
bernoulliEventProb ((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ)))
(fun Omega2 =>
LinearNeumannOffDiagonalCoefficientBound Omega2 S
((m : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ)))
(Ccoef * μ₁ *
Real.sqrt ((r : ℝ) / ((n₁ : ℝ) * (n₂ : ℝ))) *
Real.sqrt
((μ₀ * (↑(max n₁ n₂)) * (r : ℝ) *
(β * Real.log (↑(max n₁ n₂)))) / (m : ℝ)))) ≥
1 - ccoef * Real.rpow (↑(max n₁ n₂)) (-β) := by
sorry
Source