Question: You flip a fair red coin once, and you flip a fair blue coin once, independently of each other.
Define the random variables:
X = {1 if the red coin flip resulted in heads, 0 if the red coin flip resulted in tails}
Y = {1 if the blue coin flip resulted in heads, 0 if the blue coin flip resulted in tails}
and Z = min(X,Y)
What is the expected value E(Z) of the random variable Z?
Answer: 0.25
Attempt:
For random variable x=1 correlates to pr(x) = 0.5 and x = 0 correlates to pr(x) = 0.5. Same with the y's.
Z=min(X,Y) = would just be either since their the same?
So, using the expected value formula I get that (0.5*1) + (0.5*0) = 0.5
$Z$ is an indicator variable and it takes value $1$ when both get heads.
Hence $$E[Z]=P(Z=1) = 0.5^2=0.25$$
Remark:
The assumption that $Z$ would follows the same distribution as $X$ or $Y$ is false.