I'm dealing with an exercise which deals with the poker game. I need to calculate the probability of getting a full house.
Full house is getting 3 cards of the same type and 2 cards of the same type.
I've made a research, but I cannot understand why the combination for getting a full house is
$13 \choose 1$$4 \choose 3$$12 \choose 1$$4 \choose 2$ Can someone explain me in details why we multiply those combinations? I mean, explain why we consider these numbers.
How many ways could you get a full house of kings over queens? You need 3 of the 4 kings and 2 of the 4 queens. That explains the $4 \choose 3$ and the $4 \choose 2$ factors. But of course you could have a lot of other types of full houses. How many options do you have for the three of a kind? $13 \choose 1$. Then of course you only have 12 other denominations left for the pair - that's the $12 \choose 1$.