Problem:
- Three-of-a-kind poker hand: Three cards have one rank and the remaining two cards have two other ranks. e.g. {2♥, 2♠, 2♣, 5♣, K♦}
Calculate the probability of drawing this kind of poker hand.
My confusion: When choosing the three ranks, the explanation used $13 \choose 1$ and $12 \choose 2$. I used $13 \choose 3$ instead which ends up being wrong. I do not know why.
This mistake is made so often by beginners, that I advise that you consider it as reserving bags for chosen ranks from $13$ bags.
So one bag needs to be reserved for the triple, and two for the two singles, hence $\binom{13}1\binom{12}2$.
The order in which we reserve does not matter, so we could as well write $\binom{13}2\binom{11}1$, although the first, of course, will seem the more natural.