I am given n independent Bernoulli trials, prob success = p. If X is # of successes, and Y is the number of failures, what is E(XY) and Cov(X,Y)? I was trying to use E(XY) - E(X)E(Y), the second component is easy, but I can't think of an easy way of finding E(XY) (maybe there isn't any?) Thanks!
Find E(XY) and covariance
5
$\begingroup$
probability
1 Answers
3
The number of successes and failures have to add up to $n$, i.e. $X+Y=n$, so you can write
$E[XY] = E[X(n-X)] = E[nX - X^2] = nE[X] - E[X^2]$
Does that help?
-
0Ahh brilliant! I did try to use the sum in calculation, but didn't think that substitution will make it that much easier... Thanks! – 2011-11-18