tangent_projection_idempotent
Provedlinear-algebramatrix-completion
The orthogonal projection onto the tangent space at (defined from a rank- SVD via the left/right singular-space projectors) is idempotent: for every matrix . This follows from orthonormality of the singular vectors and is a reusable building block for operator-norm bounds on tangent-space sampling operators (Candes-Recht 2009, Section 3-4).
Preamble
import Definitions.Def_matrix_completion_tangent import Mathlib.Analysis.CStarAlgebra.Matrix import Mathlib.Analysis.InnerProductSpace.PiL2 open MatrixCompletion open scoped Classical BigOperators Matrix Matrix.Norms.L2Operator
Formal statement
theorem tangent_projection_idempotent
{n1 n2 r : Nat} {M : RealMatrix n1 n2} (S : SVD M r)
(X : RealMatrix n1 n2) :
tangentProjection S (tangentProjection S X) = tangentProjection S X := by sorrySource
Candes, Recht, Exact Matrix Completion via Convex Optimization (2009), Section 3