最多掷三次骰子的最优停策略
Dice Game
题目详情
你最多可以掷一枚公平六面骰 3 次。
第一次或第二次掷出点数 后,你可以选择:
- 立刻停下并拿到 美元;
- 或继续掷(放弃当前 )。
若到了第三次则必须接受第三次点数。问:这个游戏的价值(期望收益)是多少?最优策略是什么?
You can roll a fair 6-sided die up to 3 times. After the first or the second roll, suppose you see a number . You can either take dollars and stop, or continue rolling (and forgo ). If you reach the third roll, you must take whatever value you get. What is the value of this game, and what is the strategy?
解析
第三次若到达,期望为
第二次看到 :若继续的期望是 3.5,则当 (即 )应停,否则继续。于是第二次后的期望为
第一次看到 :与 4.25 比较,若 (即 )应停,否则继续。于是从开始的期望为
最优策略:
- 第一次掷到 5 或 6 就停;
- 第二次掷到 4、5、6 就停;
- 否则掷到第三次并接受结果。
Original Explanation
-
Final stage (3rd roll): If you get to the 3rd roll, the expected value of that single roll is
-
Second roll: If you see a value on the second roll, compare to the expected value if you continue (which is 3.5 for the third roll).
- If (i.e., ), stop and take .
- If (i.e., ), continue.
- The expected value after the second roll is thus
-
First roll: Compare the first-roll to 4.25.
- If (i.e., or ), stop and take .
- If (i.e., ), continue.
- The expected value from the first roll is then
Thus, the game is worth .
Optimal strategy:
- Stop if the roll is 5 or 6 on the first roll,
- Stop if the roll is 4, 5, or 6 on the second roll,
- Take whatever the third roll is if you reach that point.