GAME 1) Suppose you play game where you throw a coin 100 times. If it's heads you win 2 if it is tails you lose 1.
a) What is the expected value of this game? This one is easy and the answer is E[game1] = 50
GAME 2) Suppose you start with $50 and you stop when you run out of money. Otherwise you stop after 100 throws.
b) What is the expected value of game 2 (not counting the initial amount you started with)? Actually the question only asks if E[game2] > E[game1] or E[game2] < E[game1] or E[game2] = E[game1].
If they are different is the difference significant?
I am puzzled by part b. I am not sure how to go about it? Any suggestions/ answers will be most welcome.
There doesn't seem to be any difference, really. In the worst case scenario you run out of money at exactly 100 throws, so no matter what, you get 100 throws, which is exactly game 1.
For starting with \$50, it's rather harder; since you might stop early, it's possible to have what would be a winning run of 100 items that nonetheless fails - if your sequence would be 50 losses and 50 wins, since you run out of money on the 50th throw, you stop there. I suspect a more calculation-intensive approach is required, which I'll show for starting at \$3 and limiting to just 6 throws:
The expectation is then $$\frac{0\cdot 8 + 0\cdot 3 + 3\cdot 12 + 6\cdot 19 + 9\cdot 15 + 12\cdot 6 + 15 \cdot 1}{64}-3 = 2.8125$$
Which is actually slighty lower than the unrestricted expectation of $\frac{2-1}{2}\cdot6=3$. This is because even when it's going bad, the remaining expectation is still positive: in the situation where you give up, the remaining expectation is still +1.5, just like the others.