There's a deck of 52 cards. A five-card hand has three of a kind consists of 3 cards of the same rank, one card of another, and one card of another. How many different 3-of-a-kind hands are there?

1 Answer

#((13),(1))((4),(3))((12),(2))((4),(1))^2=54,912#

Explanation:

To get a three-of-a-kind, we have 3 of one ordinal, and 2 other cards that are not the same ordinal as the first three or each other.

In all of the calculation, we're using combinations (we don't care about the order of the card draw):

#C_(n,k)=((n),(k))=(n!)/((k!)(n-k)!)# with #n="population", k="picks"#

There are 13 ordinals in a deck of cards (Ace, or 1, through 10, and then Jack, Queen, and King). We are picking one of the ordinals:

#((13),(1))#

and from that ordinal we want 3 of the suits (there are 4 suits for each ordinal - Spades, Hearts, Clubs, Diamonds):

#((13),(1))((4),(3))#

We then need to get 2 more cards. They can't be of the same ordinal as the first one or each other (so that's 12 remaining ordinals and we're picking 2). We want one of each:

#((13),(1))((4),(3))((12),(2))((4),(1))^2#

and now we can calculate this:

#13xx4xx66xx4^2=54,912#