返回题库

倒霉的 7 I

Unlucky Seven I

专题
Probability / 概率
难度
L4

题目详情

你掷一枚公平六面骰。你可以选择:

  • 直接停下并拿到第一次点数(美元);
  • 或再掷一次,但规则变为:若两次点数和 7\ge 7,你需要支付与第一次点数相同的金额(即收益为负的第一次点数);若两次点数和 <7<7,你获得第二次点数(美元)。

若你最优决策,期望收益是多少?

You are given a fair 66-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 77, you pay the value equal to your first roll. If the sum of the two rolls is less than 77, you receive the second observed value in dollars. Assuming optimal play, what is your expected payout?

解析

若第一次掷到 3、4、5、6,再掷必然使和 7\ge 7,只会导致付出第一次点数,因此应直接停。

只需比较第一次为 1 或 2 时是否再掷:

  • 若第一次为 1:再掷仅在第二次为 6 时亏 1(概率 1/61/6),其余得到 1..5。再掷期望
16(1)+1+2+3+4+56=73>1,\frac{1}{6}(-1)+\frac{1+2+3+4+5}{6}=\frac{7}{3}>1,

所以第一次为 1 时应再掷。

  • 若第一次为 2:若第二次为 5 或 6(概率 1/31/3)则亏 2,否则得到 1..4。再掷期望
13(2)+1+2+3+46=1<2,\frac{1}{3}(-2)+\frac{1+2+3+4}{6}=1<2,

所以第一次为 2 时不再掷。

于是策略为:第一次为 1 则再掷,否则停。总体期望为

73+2+3+4+5+66=6718.\frac{\frac{7}{3}+2+3+4+5+6}{6}=\frac{67}{18}.

Original Explanation

The first observation that can be made is that if we roll a 3,4,5,3, 4, 5, or 66, 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 77 in any of these cases if our first roll is any of these numbers. Therefore, we should look at just rolling a 11 or 22. If we roll a 11, we either lose 11 with probability 16\dfrac{1}{6} (if we roll a 66 on the second roll). Otherwise, we make 1,2,,51, 2, \dots, 5, each with probability 16\dfrac{1}{6}. Therefore our expected payout if we roll again is 16(1)+1+2+3+4+56=73>1\dfrac{1}{6} \cdot (-1) + \dfrac{1+2+3+4+5}{6} = \dfrac{7}{3} > 1. This implies we should roll again if we receive a 11. If we roll a 22, then with probability 13\dfrac{1}{3} we lose 22 (if we roll a 5 or 6). Otherwise, we receive 1,2,3,1,2,3, or 44 with equal probability 16\dfrac{1}{6}. Therefore, the expected value upon rolling again is 13(2)+1+2+3+46=1<2\dfrac{1}{3} \cdot (-2) + \dfrac{1+2+3+4}{6} = 1 < 2. This implies we should not roll again and keep the two. As a result, we keep all values that aren't 11, and otherwise, we roll a 11 again. This yields an expected value of 73+2+3+4+5+66=6718\dfrac{\frac{7}{3} + 2 + 3 + 4 + 5 + 6}{6} = \dfrac{67}{18}.