Solved – the variance of the sum of components of a multivariate normal distribution

bivariatenormal distributionvariance

I'm talking with my advisor about how to compute standard deviations for, say, combined standardized test scores for admissions purposes. For example, we'd be interested to compute the sum of the verbal and quantitative scores from the GRE, which are correlated, and normed to be approximately normal.

More formally, say you have a multivariate normal with vector mean and matrix covariance $X \sim N(\mu, \Sigma)$, with $X = (X_1, X_2, …)$ (and covariances are non-zero). What is the variance of $\sum{X_i}$? If it's hard to compute in general, I'm happy with bivariate for now, a recursive approach or similar.

Best Answer

The variance is the matrix product: $$ 1'\Sigma1 $$

Related Question