I'm new to combinatorics, and I'm having difficulties with the following problem.
From standard deck of 52 cards, we want the number of "3 of a kinds" that are not "4 of a kinds" and not "full houses."
Here's my solution, but it looks like I'm overcounting.
Step 1 - Choose kind: $13 \choose 1$ = $13$ ways
Step 2 - Choose three of that kind: since there are 4 of each kind, we have $4 \choose 3$ = $4$ ways
Step 3 - Choose a card from the deck that's not the same kind as in step (2): $52-4 \choose 1$ = $48$ ways
Step 4 - Choose a card from the deck that's not the same kind as in step (2),(3): $52-4-4 \choose 1$ = $44$ ways.
This comes to $109824$ but the actual answer is $54912$, so I'm overcounting by a factor of 2 somewhere.
Any help is appreciated!
You want to choose three suits of one kind, and a suit of each for two different kinds.
$$\binom{13}1\binom 43\binom {12}2\binom 41^2$$
The factor of two is due to the fact that the singletons are selected without order. $$\binom{13}1\binom 43\dfrac{(12\cdot 4)~(11\cdot 4)}{2!}$$