spectral_norm_inner_pairing_bound
Provedfunctional-analysisinner-productmatrix-completionspectral-norm
The Banach-dual / bilinear norming UPPER BOUND for the spectral norm: for any vectors , the inner-product pairing . Equivalently, every scalar linear functional (for fixed unit ) is dominated by the spectral norm. This is the matrix-to-scalar reduction tool used in de la Peña Proposition 1 / the norming-functional step: to control a matrix-valued tail one pairs against a fixed dual vector and reduces to a scalar statistic. Proof: Cauchy-Schwarz (real_inner_le_norm) gives , and the operator-norm bound (le_opNorm) gives .
Preamble
import Definitions.Def_matrix_completion_tangent import Mathlib.Analysis.InnerProductSpace.Adjoint open MatrixCompletion open scoped BigOperators Classical InnerProductSpace
Formal statement
theorem spectral_norm_inner_pairing_bound
{n1 n2 : ℕ} (X : RealMatrix n1 n2)
(x : EuclideanSpace ℝ (Fin n2)) (y : EuclideanSpace ℝ (Fin n1)) :
⟪Matrix.toEuclideanLin X x, y⟫_ℝ ≤ spectralNorm X * ‖x‖ * ‖y‖ := by sorrySource
Mathlib Analysis.InnerProductSpace.Basic (real_inner_le_norm) + Analysis.Normed.Operator.Basic (le_opNorm). de la Pena-Montgomery-Smith 1995 arXiv:math/9309211 Proposition 1 (Banach-space norming functional reducing matrix/vector tails to scalar).