Suppose you have an alphabet of $5$ letters: $\left \{ a,b,c,d,e \right \}$. Let's consider a set of words of length 25. What is the number of words that have $5$ $a$, $5$ $b$, $5$ $c$, $5$ $d$, and $5$ $e$ in it?
This is my approach: There are $\binom{5}{1}$ choices for the first letter, and then $\binom{24}{4}$ choices for placing that letter in the word. Then we have $\binom{4}{1}$ choices for the second letter, and then $\binom{19}{4}$ choices for placing that letter in the word. And we continue so on.
At the end, I find that the total number of such words is equal to $$\binom{5}{1} \binom{24}{4} \:\:\: \binom{4}{1} \binom{19}{4} \:\:\: \binom{3}{1} \binom{14}{4} \:\:\: \binom{2}{1} \binom{9}{4} \:\:\: \binom{1}{1}\binom{4}{4} $$
Is my reasoning correct?