[Math] License plates with no repetition

combinatoricspermutations

If there are no restrictions on where the digits and letters are placed. How many $8$-place license plate consisting of $5$ letters and $3$ digits are possible if no repretitions of letters or digits are allowed..?

Naturally I write

$26*25*24*23*22*10*9*8$

This is the count if we want them to be in order. Since there no restictions we can permute them any way we want and that gives 8!. So the answer should be the product of the numbers. However, the answer key says the correct answer is

$$ {26 \choose 5} {10 \choose 3} 8! $$

I believe this to be a typo since repetitions is not allowd

Best Answer

If no repetitions of letters then we have $\dbinom{26}{5}$ ways.

If no repetitions of digits then we have $\dbinom{10}{3}$ ways.

If no repetitions of letters or digits are allowed, then we have $$\dbinom{10}{3}\dbinom{26}{5}\cdot8!\mbox{ ways}$$