扑克牌手牌概率
Poker Hands
题目详情
一副标准 52 张牌中随机抽取 5 张作为手牌。
求以下牌型的概率:
- 四条;
- 葫芦(3+2);
- 两对。
英文原题
In a standard 52-card deck (13 values 4 suits), a 5-card poker hand may have special configurations. What are the probabilities of getting:
- Four of a kind,
- A full house (three of a kind + a pair),
- Two pairs?
解析
总手牌数:。
- 四条:选点数 种,副牌从剩余 张选 1:。
- 葫芦:三条点数 选 1 且花色 ;对子点数从剩余 12 选 1 且花色 。
- 两对:选两种点数 ,每对选花色 ,再从剩余 44 张选 1 张单牌。
英文解析
The total number of 5-card hands is
-
Four of a Kind
- Choose 1 value out of 13 for the 4 cards,
- Choose 1 card from the remaining 48 for the 5th card.
-
Full House (3 cards of one value + 2 cards of another value)
- Choose 1 value out of 13 for the triple ((\binom{4}{3}=4) suits),
- Choose 1 value out of the remaining 12 for the pair ((\binom{4}{2}=6) suits).
-
Two Pairs
- Choose 2 values out of 13 for the pairs ((\binom{13}{2}=78)),
- For each pair, choose suits in (\binom{4}{2}=6) ways, so total (6 \times 6) for two pairs,
- Choose 1 card from the remaining 44 cards.