返回题库

掷 5 枚骰子取最大 3 个之和为 18

The Big Three

专题
Probability / 概率
难度
L4

题目详情

掷 5 枚公平六面骰,取其中最大的 3 个点数求和。该和为 18 的概率是多少?

Suppose we roll 5 standard fair dice and sum the upfaces of the largest 3 values showing. Find the probability that the sum is 1818.

解析

最大 3 个点数和为 18 当且仅当 5 枚骰子里至少有 3 个 6。

设 6 的个数 KBinomial(5,1/6)K\sim\mathrm{Binomial}(5,1/6)

P(K3)=k=35(5k)(16)k(56)5k=23648.P(K\ge 3)=\sum_{k=3}^5\binom{5}{k}\left(\frac{1}{6}\right)^k\left(\frac{5}{6}\right)^{5-k}=\frac{23}{648}.

Original Explanation

To obtain a sum of 1818 from three dice, we need to have at least 3 sixes among the 5 dice. Therefore, we really are just asking for the probability of 3,4,3,4, or 55 sixes among 55 die rolls. The probability of 55 sixes is just 165\frac{1}{6^5}, as it is just 16\frac{1}{6} probability for each die. The probability of 44 sixes is 5561645 \cdot \frac{5}{6} \cdot \frac{1}{6^4}, as we have 55 ways to select the die that isn't a 66, a 56\frac{5}{6} probability that the selected die is not a 66, and then 16\frac{1}{6} probability for each of the other 4 dice to be a 66. Lastly, the probability that we have exactly 33 sixes is (52)(56)2163\displaystyle \binom{5}{2} \cdot \left(\frac{5}{6}\right)^2 \cdot \frac{1}{6^3}. This is because there are (52)=10\displaystyle \binom{5}{2} = 10 ways to pick the two dice that aren't a 66, 56\frac{5}{6} probability for each of them to not be a 66, and 16\frac{1}{6} probability for each of the remaining three dice to be a 66. Adding all of these up yields

165+2565+25065=27665=23648\frac{1}{6^5} + \frac{25}{6^5} + \frac{250}{6^5} = \frac{276}{6^5} = \frac{23}{648}