Definition:

  • theorem SVD Decomposition: Any non-zero matrix can be factored as where:
    • and are orthogonal matrices, ie,
    • is matrix having the first diagonal entries positive and decreasing magnitude and all other entries are 0
  • corollary Compact-form SVD:
    • Any matrix non-zero can be expressed as where
      • is such that
      • is such that
    • The positive numbers are called singular value of
    • Vectors are called the left singular vectors of
    • Vectors are called the right singular vectors of
    • These satisfies
    • Intepretation:
      • The singular value decomposition theorem allows to write any matrix as a sum of Dyad where
        • vectors are normalized with providing “strength” of the corresponding dyad
        • the vectors (respectively ) are mutually orthogonal, ensuring that each dyad represents “new information”

Matrix properties via SVD:

  • Rank nullspace and range:
    • The rank of is also the nb of non-zero entries on the diagonal of
    • Since , by Fundamental of Linear Algebra, the dimension of the nullspace of is . An orthogonal basis spanning is given by the last collumns of , i.e
    • Similarly, an orthonormal basis spanning the range of is given by the first columns of , i.e.
  • Matrix norms:
    • The squared Frobenius matrix norm of a matrix can be defined as where are the singular values of
      • Hence the squared Frobenius norm is sum of squared of the singular values
    • The induced norm is equal to the largest singular value:

Solving linear equation via SVD:

  • The linear equation can be fully analyzed via SVD. If is the SVD of A then is equivalent to where
    • and
  • Since is a diagonal matrix: , the system is simple to solve
    • For , write for and for
    • 2 cases can occur:
      • If the last components of are not zero, then the above system is infeasible, and the solution set is empty. This occurs when is not in range of
      • If then the last set of conditions in the above system hold, and we solve for with the first set of conditions: .
        • The last components of are free, which corresponds to elements in the nullspace of A.
      • If A is full column rank (its nullspace is reduced to {0}), then there is a unique solution.

Applications: