If I have two normally distributed random variables, X and Y, and I want to find the mean of the distribution that results from multiplying them together, which of the following two formulas should I use, and why? (and when would I use the other?):
E[XY] = (computational formula for the variance)
= Cov(X,Y) + E[X]E[Y]E[XY] = (product of two Gaussian PDFs)
= (E[X]Var[Y] + E[Y]Var[X]) / (Var[Y] + Var[X])
If I take the example of X = Y, both Gaussian with mean=5 and variance=2, then the two formulas above lead to different answers:
- E[XY] = 2 + 5*5 = 27
- E[XY] = (5*2+5*2) / (2+2) = 5
I know I'm missing something - is it that the product of two Gaussian PDFs does not describe the distribution of the product of the corresponding variables? If it doesn't, then what does it (the second formula) describe and how should it used? Is it possible to explain the difference in meaning between the two formulas in plain English? :P
Thanks in advance!