倒霉的 7 I
Unlucky Seven I
题目详情
你掷一枚公平六面骰。你可以选择:
- 直接停下并拿到第一次点数(美元);
- 或再掷一次,但规则变为:若两次点数和 ,你需要支付与第一次点数相同的金额(即收益为负的第一次点数);若两次点数和 ,你获得第二次点数(美元)。
若你最优决策,期望收益是多少?
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 second observed value in dollars. Assuming optimal play, what is your expected payout?
解析
若第一次掷到 3、4、5、6,再掷必然使和 ,只会导致付出第一次点数,因此应直接停。
只需比较第一次为 1 或 2 时是否再掷:
- 若第一次为 1:再掷仅在第二次为 6 时亏 1(概率 ),其余得到 1..5。再掷期望
所以第一次为 1 时应再掷。
- 若第一次为 2:若第二次为 5 或 6(概率 )则亏 2,否则得到 1..4。再掷期望
所以第一次为 2 时不再掷。
于是策略为:第一次为 1 则再掷,否则停。总体期望为
Original Explanation
The first observation that can be made is that if we roll a or , we should not consider rolling again. This is because we can only improve our stance by rolling a number larger, but the sum is guaranteed to go over in any of these cases if our first roll is any of these numbers. Therefore, we should look at just rolling a or . If we roll a , we either lose with probability (if we roll a on the second roll). Otherwise, we make , 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 (if we roll a 5 or 6). Otherwise, we receive or with equal probability . Therefore, the expected value upon rolling again is . This implies we should not roll again and keep the two. As a result, we keep all values that aren't , and otherwise, we roll a again. This yields an expected value of .