rank1
Rank-1 refers to a matrix (or linear operator) whose rank is exactly one. In linear algebra, a matrix has rank 1 when its column space and row space are each one-dimensional, meaning all nonzero columns are multiples of a single column, and all nonzero rows are multiples of a single row. Equivalently, a rank-1 matrix has all its 2x2 minors equal to zero.
One common way to express a rank-1 matrix is as an outer product A = u v^T, where
Key properties include: a rank-1 matrix has at most one nonzero eigenvalue, which for A = u v^T
Rank-1 matrices arise naturally in low-rank approximations and updates. Any matrix A admits a best rank-1 approximation
Example: A = [[2, 4], [1, 2]] equals u v^T with u = [2, 1]^T and v^T = [1, 2],