Sylvester's Criterion for Positive Definiteness
Sylvester's criterion provides a practical test for positive definiteness using determinants of principal minors, avoiding eigenvalue computation.
A real symmetric matrix is positive definite if and only if all leading principal minors are positive:
where is the upper-left submatrix of .
For positive semi-definiteness, all principal minors (not just leading) must be non-negative.
Is positive definite?
Check leading principal minors:
- ✓
- ✓
- ✓
Yes, is positive definite.
If is positive definite, then:
- All eigenvalues are positive
- All diagonal entries
- is invertible
- The quadratic form has unique minimum at origin
Every positive definite matrix has unique factorization where is lower triangular with positive diagonal entries.
This provides an efficient method for solving : solve then by forward/back substitution.
Computational cost: vs for Gaussian elimination.
In optimization, has local minimum at critical point if the Hessian is positive definite.
Sylvester's criterion provides a direct test without computing eigenvalues, crucial for high-dimensional problems.
Sylvester's criterion is computationally efficient for small matrices but requires determinant calculations. For large matrices, checking eigenvalue positivity via Cholesky decomposition (which fails for non-PD matrices) is faster. The criterion's theoretical importance lies in connecting determinants (algebraic invariants) to positive definiteness (geometric property).