Definition
A square Matrix (or ) is positive semi-definite (PSD) if:

  1. is Symmetric Matrix (or Hermitian if is complex): (or ).
  2. For all vectors (or ):

Intuition
A positive semi-definite matrix generalizes the concept of a Positive Definite Matrix by allowing the quadratic form to be zero for some non-zero . Geometrically, this can correspond to flat directions in a quadratic function, indicating that the function is not strictly convex but still non-negative.

Key Properties

  1. Eigenvalues:
    All eigenvalues of are non-negative: .
  2. Determinant and Leading Principal Minors:
    • .
    • All leading principal minors are non-negative.
  3. Cholesky Decomposition:
    If is positive semi-definite, it can be factorized as:

    where is a lower triangular matrix, though may not be unique.
  4. Relation to Positive Definiteness:
    is PSD if and only if it is positive definite or singular (non-invertible).
  5. Norm Property:

Applications

  1. Optimization:
    Positive semi-definite Hessian matrix indicate that the function is Convex Function (but not necessarily strictly convex).
  2. Machine Learning:
    PSD matrices often represent covariance matrices in Gaussian processes, kernel methods, and other probabilistic models.