倒霉的 7 II
Unlucky Seven II
题目详情
你掷一枚公平六面骰。你可以选择:
- 直接停下并拿到第一次点数(美元);
- 或再掷一次,但规则变为:若两次点数和 ,你需要支付与第一次点数相同的金额(收益为负的第一次点数);若两次点数和 ,你获得两次点数之和(美元)。
若你最优决策,期望收益是多少?
You are given a fair -sided die and you roll it. You can either choose to keep your roll and receive the observed value in dollars. Alternatively, you are allowed to roll again, but if the sum of your two rolls is at least , you pay the value equal to your first roll. If the sum of the two rolls is less than , you receive the sum of the two observed values in dollars. Assuming optimal play, what is your expected payout?
解析
分情况讨论第一次点数 :
- :再掷期望为
应再掷。
- :再掷有 概率(掷到 5 或 6)亏 2,否则得到 3..6。期望
应再掷。
- :再掷有 概率(掷到 4..6)亏 3,否则得到 4..6。期望
不再掷。对 同理更不应再掷。
因此策略:第一次为 1 或 2 则再掷,否则停。总体期望为
Original Explanation
Condition on the value of the first roll. If we roll a , we either lose (if we roll a on the second roll). Otherwise, we make a total of , each with probability . Therefore our expected payout if we roll again is . This implies we should roll again if we receive a .
If we roll a , then with probability we lose 3, 4, 5,6\dfrac{1}{6}\dfrac{1}{3} \cdot (-2) + \dfrac{3+4+5+6}{6} = \dfrac{7}{3} > 2$. This implies we should roll.
If we roll a , then with probability we lose 4, 5,6\dfrac{1}{6}\dfrac{1}{2} \cdot (-3) + \dfrac{4 + 5 + 6}{6} = 1 < 33\dfrac{\frac{19}{6} + \frac{14}{6} + 3 + 4 + 5 + 6}{6} = \dfrac{47}{12}$.