You roll a fair six-sided die and are paid its face value in dollars. If the face is a 4, 5, or 6 you roll again and are paid again; if it is a 1, 2, or 3 the game stops. Your total payoff is the sum of every face you roll. What payoff should you expect?
Reveal solutionHide solution
#Set up the recursion
Each roll pays its face value, worth an average of regardless of which number lands. With probability that number is a 4, 5, or 6 and the game restarts as an independent copy with the same expected payoff . Collecting the first roll and the possible restart,
#Or add up the rolls
The -th roll happens only if the previous all continued, which has probability , and contributes an expected when it does. Linearity sums a geometric series,
#Read it off
The expected payoff is dollars. The continuation rule doubles a single roll's expected , since on average you take two rolls before a low number ends the game.