The Multivariate Normal Distribution
The bell curve for several correlated variables at once, pinned down entirely by a mean vector and a covariance matrix. It is the backbone of portfolio risk, factor models, and almost every Gaussian assumption in quant finance.
Prerequisites: The Normal Distribution, Covariance Matrix Estimation
The multivariate normal is what the The Normal Distribution becomes when you have several quantities that vary together, say the daily returns of ten stocks. Instead of one bell curve on a line, you get a smooth mound over a whole space, and its level sets are tilted ellipses whose slant encodes how the variables move in concert. It's the default model whenever you need many correlated Gaussians, which in finance is almost always: portfolio risk, factor models, Kalman filters and pricing engines all lean on it.
What makes it so workable is that just two ingredients pin it down completely. A mean vector says where each variable centres, and a covariance matrix says how wide each one is and how every pair co-moves. The density for a -dimensional vector is
Don't be scared of it. The piece that matters is the quadratic inside the exponent: it's a "distance from the centre" that has been re-scaled by the covariance, so it measures how many standard deviations away a point is accounting for correlation. Everything else is a normaliser. Here is the vector of means, is the covariance matrix, is its inverse, and its determinant.
The clearest way to feel it is in two dimensions. Below is a cloud of draws from a bivariate normal; drag the correlation and watch the round blob tilt into an ellipse. At it's a circular cloud (the two variables ignore each other); push toward and it collapses toward a line (knowing one nearly tells you the other). The green line is the conditional mean, where is expected to sit for each value of .
Three properties that make it special
The multivariate normal is beloved because it's closed under the operations quants actually do:
- Linear combinations stay normal. Any weighted sum of jointly normal variables is itself normal. A portfolio of Gaussian returns is Gaussian, with variance , which is precisely the formula every risk model computes.
- Marginals and conditionals stay normal. Slice out any subset of variables and you get another (smaller) multivariate normal. Condition on some of them and the rest stay normal too, with a mean that shifts linearly, the mathematical root of linear regression.
- Uncorrelated implies independent. For jointly normal variables, zero correlation is the same as full independence, a coincidence that holds for essentially no other distribution.
Two objects fully specify it: the mean vector (where each variable centres) and the covariance matrix (each variable's spread and every pair's co-movement). Every linear combination of jointly normal variables is again normal, with variance .
Worked example: a two-asset portfolio
Two assets have returns that are jointly normal, each with mean 0 and standard deviation , and a correlation of . Their covariance matrix is
Hold an equal-weight portfolio, . Its variance is , which for two assets works out to
So the portfolio's standard deviation is , less than either asset's because the correlation is below 1, that's diversification, quantified in one matrix multiply. And the conditional expectation of asset 2 given asset 1 moved by is : a day for asset 1 nudges your best guess for asset 2 to .
For jointly normal variables, the best guess of given is a straight line: . Multivariate normality is exactly why linear regression is the right model, not just a convenient one.
Where it misleads
- Marginal normality is not joint normality. Each variable can be perfectly bell-shaped on its own while the pair is not jointly normal, and then "uncorrelated implies independent" fails. Joint normality is a stronger claim than a normal histogram per column.
- must be a valid covariance matrix. It has to be symmetric and positive semidefinite, no negative variances allowed for any portfolio. Estimated covariance matrices on noisy data often come out ill-conditioned, which is why shrinkage exists.
- Thin tails, again. Like its one-dimensional parent, the multivariate normal badly underweights joint extremes. Real markets crash together far more often than a Gaussian says, so correlation-based risk models understate the danger exactly when everything moves at once.
The multivariate normal is the natural home of Joint and Marginal Distributions with Gaussian pieces, the source of the linear form of Conditional Expectation, and the object whose covariance you spend so much effort estimating well (Covariance Matrix Estimation). Master the mean-vector-and-covariance-matrix picture and most of Gaussian quant finance opens up.
Related concepts
Practice in interviews
Further reading
- Blitzstein & Hwang, Introduction to Probability, ch. 7
- Wasserman, All of Statistics (ch. 2)