Suppose you have 12 people, 4 of them are drivers. You have three cars, with one having 6 seats, the other 4 and the final 2 seats. In how many different ways can people be seated?
My solution was to count first the number of ways to seat the drivers, thus I concluded there would be $\binom{4}{3}$ to do so. Finally, all is left is to count the number of ways to seat the remaining people in the remaining seats, which would give me $\frac{9!}{5!3!2!}$. I conclude there are $$\binom{4}{3}\frac{9!}{5!3!2!}$$ ways to seat all the 12 people.
Yet, according to the solution, there are $$4!3!2! \frac{9!}{5!3!2!}$$ ways of doing it. My question is why is there $4!3!2!$ to seat the drivers and not $\binom{4}{3}$ ways?