Question: Four fair coins are flipped. You get $\$1$ each time head appears. The person tells you that there are at least two heads. What is the expected payoff?
I cannot seem to grasp conditional expectation and PMFs. I understand how to arrive at the expected value of getting heads in the four tosses if you are given $\$1$ each time head appears $E[X] = \$2$, but when the conditional is placed stating that the person flipping the coin tells you that there are at least $2$ heads, I do not understand how to construct the conditional expectation.
How would I extend this to the person telling me there are at least $3$ heads? Or $1$ head?
Thank you.
Simply add up how much money you would get for every outcome, and divide by the number of outcomes. The unconditional case is:
(T,T,T,T) -> 0
(H,T,T,T) -> 1
(T,T,T,H) -> 1
(H,T,T,H) -> 2
(T,T,H,T) -> 1
(H,T,H,T) -> 2
(T,T,H,H) -> 2
(H,T,H,H) -> 3
(T,H,T,T) -> 1
(H,H,T,T) -> 2
(T,H,T,H) -> 2
(H,H,T,H) -> 3
(T,H,H,T) -> 2
(H,H,H,T) -> 3
(T,H,H,H) -> 3
(H,H,H,H) -> 4
Add the amounts in each case, which is 32, then divide by the number of cases, 16. That is all there is to finding an expected value. Now, just do it again with the new rule. So, list the cases again, removing the ones that cannot appear.
(H,T,T,H) -> 2
(H,T,H,T) -> 2
(T,T,H,H) -> 2
(H,T,H,H) -> 3
(H,H,T,T) -> 2
(T,H,T,H) -> 2
(H,H,T,H) -> 3
(T,H,H,T) -> 2
(H,H,H,T) -> 3
(T,H,H,H) -> 3
(H,H,H,H) -> 4
Now the sum is 28, and there are 11 cases, so the expected payoff is 28/11, which rounds to $2.55.
It seems to me that people often over complicate problems like this. Just add up the values for each case and divide by the number of cases. That is really all there is to expected value.