I was attempting to calculate the number of three of a kind in a five card poker hand. I looked at all the posts pertaining to this question, but none of them had the problem that I currently have in calculating the number of five card poker hands. I reasoned as follows
We want three cards of the same type, so we get
$$\binom{13}{1}\binom{4}{3}\tag{1}$$
Afterwards, I then extract one card from the remaining $12$ types
$$\binom{12}{1} \binom{4}{1}\tag{2}$$
Finally, I then extract one more card from the remaining $11$ types
$$\binom{11}{1} \binom{4}{1} \tag{3}$$
Multiplying $(1),(2)$ and $(3)$ renders $109,824$, which is wrong, and I know and understand the correct answer to be
$$\binom{13}{1}\binom{4}{3}\binom{12}{2}\binom{4}{1}^2 = 54,912$$
Please offer me insight into what is going on in my answer, and I would greatly appreciate it.