- categories: Linear algebra, Matrix
Definition
A square Matrix (or ) is positive semi-definite (PSD) if:
- is Symmetric Matrix (or Hermitian if is complex): (or ).
- 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
- Eigenvalues:
All eigenvalues of are non-negative: . - Determinant and Leading Principal Minors:
- .
- All leading principal minors are non-negative.
- Cholesky Decomposition:
If is positive semi-definite, it can be factorized as:
where is a lower triangular matrix, though may not be unique. - Relation to Positive Definiteness:
is PSD if and only if it is positive definite or singular (non-invertible). - Norm Property:
Applications
- Optimization:
Positive semi-definite Hessian matrix indicate that the function is Convex Function (but not necessarily strictly convex). - Machine Learning:
PSD matrices often represent covariance matrices in Gaussian processes, kernel methods, and other probabilistic models.