matrix theory
Positive Definite Matrices
You should know: symmetric matrices, eigenvalues and eigenvectors
Overview
A symmetric (or Hermitian) matrix A is positive definite if the quadratic form v^T A v > 0 for all nonzero vectors v. Equivalently, all eigenvalues are strictly positive. Positive definite matrices represent genuine inner products, arise in optimization (Hessians at minima), statistics (covariance matrices), and admit the Cholesky factorization A = L L^T.
Intuition
A positive definite matrix A defines a 'stretched inner product': the pairing (u,v) = u^T A v satisfies all inner product axioms. Think of A as an ellipse — the set {v : v^T A v = 1} is an ellipsoid, with axes aligned to the eigenvectors of A and lengths inversely proportional to the square roots of eigenvalues. Positive definiteness means the ellipsoid is a proper, bounded shape — no flat directions.
Formal Definition
A real symmetric matrix A is positive definite (PD) if, and positive semidefinite (PSD) if:
Notation
| Notation | Meaning |
|---|---|
| A is positive definite | |
| A is positive semidefinite | |
| Quadratic form associated with A |
Properties
All eigenvalues positive
Positive diagonal
Invertible
Sylvester's criterion
Closure
Applications
Covariance matrices in multivariate Gaussian distributions are positive semidefinite. Positive definite covariance matrices correspond to non-degenerate distributions.
Worked Examples
- 1
Sylvester's criterion: check leading principal minors.
- 2
Both minors are positive, so A is positive definite by Sylvester's criterion.
- 3
Confirm with eigenvalues: characteristic polynomial.
✓ Answer
A is positive definite: eigenvalues 1 and 3 are both positive, and leading minors 2 and 3 are positive.
Practice Problems
For what values of c is the matrix A = [[4,c],[c,1]] positive definite?
Show that if A is positive definite and B is any matrix with full column rank, then B^T A B is positive definite.
Common Mistakes
Positive diagonal entries imply positive definiteness.
Positive diagonal entries are necessary but not sufficient. The full matrix A = [[1,2],[2,1]] has positive diagonal but eigenvalue -1, so it is not positive definite.
Quiz
Summary
- A is positive definite (A ≻ 0) if v^T A v > 0 for all nonzero v — equivalently, all eigenvalues are positive.
- Sylvester's criterion: A ≻ 0 iff all leading principal minors are positive.
- A ≻ 0 has the Cholesky factorization A = LL^T with L lower triangular, positive diagonal.
- Positive definite matrices are invertible; their inverse is also positive definite.
- Key applications: covariance matrices (statistics), Hessians at local minima (optimization), stiffness matrices (FEM).
References
- WebsiteWikipedia — Definite matrix
Mathematics