Quant GT
Browse all lessons
Section 17 · Lesson 17.5

Positive Definite Matrices

Why covariance matrices have a special structure.

A symmetric matrix AA is positive semi-definite (PSD) if xAx0x^\top A x \ge 0 for all xx, and positive definite (PD) if the inequality is strict for x0x \ne 0.

Equivalent characterizations:

All eigenvalues are non-negative (PSD) or strictly positive (PD).Cholesky decomposition A=LLA = L L^\top exists with LL 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 aΣa=Var(aX)0a^\top \Sigma a = \mathrm{Var}(a^\top X) \ge 0. 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 2×\sim 2\times faster than LU), for guaranteeing convex quadratic objective functions, and for ensuring that mean-variance portfolio optimization has a unique solution.