A symmetric matrix is positive semi-definite (PSD) if for all , and positive definite (PD) if the inequality is strict for .
Equivalent characterizations:
- All eigenvalues are non-negative (PSD) or strictly positive (PD).
- Cholesky decomposition exists with lower-triangular (and unique with positive diagonal for PD).
- Every principal minor's determinant is non-negative (PSD) or positive (PD).
Covariance matrices are always PSD because . They're PD if no linear combination of the variables is constant — usually the case in practice.
PD matrices are essential for solving linear systems efficiently (Cholesky is faster than LU), for guaranteeing convex quadratic objective functions, and for ensuring that mean-variance portfolio optimization has a unique solution.