As has been answered previously, the proof of cov(AX) = A cov(X) A' with X being a random vector and A a fixed matrix is relatively straightforward here.
In order to get a more visual sense of random vectors, I was trying to "proof" this equality to myself by generating random data in R, like this:
set.seed(0)
a <- c(rnorm(1e6,6,3))
b <- c(rnorm(1e6,11,8))
X <- rbind(a,b)
A <- matrix(c(9, 100, 20, 200), nrow=2)
[,1] [,2]
[1,] 9 20
[2,] 100 200
From there, calculating the $RHS$ of the equality is probably the result of:
A %*% cov(t(X)) %*% t(A)
[,1] [,2]
[1,] 26346.71 264277.7
[2,] 264277.71 2651783.0
The question is how to calculate the $LHS$ of the equation.
XbyA? If so, consider if you can take some transposes to get what you want.... – Danica Apr 21 '15 at 01:21