23.4. Independence#

If the elements of X are mutually independent then Cov(Xi,Xj)=0 for all ij and hence the covariance matrix Σ is a diagonal matrix with the ith diagonal element equal to Var(Xi).

In the other direction, zero covariance doesn’t in general imply independence, and pairwise independence doesn’t imply mutual independence. But once again, the multivariate normal turns out to have a wonderful property:

If X has a multivariate normal density and its elements are pairwise uncorrelated – that is, Cov(Xi,Xj)=0 for all ij – then the elements of X are mutually independent.

That is, multivariate normal random variables are independent if and only if they are pairwise uncorrelated.

See More

This is easy to see from the form of the density of X. If Σ is a diagonal matrix then so is Σ1. The ith diagonal element of Σ1 is 1/σi2 where σi2=Var(Xi). So

(xμ)TΣ1(xμ) = i=1n(xiμ(i))2σi2

and therefore

exp(12(xμ)TΣ1(xμ)) = i=1nexp(12(xiμ(i)σi)2)

In the constant of integration, det(Σ)=σ12σ22σn2.

Therefore the density of X is the product of the marginal normal densities.

Thus for a multivariate normal random vector, “pairwise uncorrelated” is equivalent to “mutually independent” and is a much easier condition to check.

The result makes it easy to see if two coordinates of a multivariate normal vector are independent. All you have to do is find the covariance between the two. If the covariance is 0, they are independent.

23.4.1. Sum and Difference, Revisited#

Let X=[X1,X2]T have a bivariate normal distribution. Let S=X1+X2 and D=X1X2. We know that S and D have a bivariate normal distribution and that

Cov(S,D) = Var(X1)Var(X2)

If X1 and X2 have the same variance then S and D are uncorrelated, and hence also independent by what we have just proved.

Thus for example the sum and difference of two i.i.d. normal random variables are independent.

You have shown in exercises that the sum and differences of any two i.i.d. random variables are uncorrelated. If in addition the two variables are normal, then their sum and difference are independent, not just uncorrelated.