Suppose that any two $n$-digit numbers are considered equivalent if it contains the same digits, but in a different order (eg. 34068, 03468 and 86304 are equivalent)
How many five-digit numbers are not equivalent (leading digits allowed)?
Given solution:
2002
My solution:
Any of the 10 digits can be in the first place, any 9 of the remaining digits can be in the second place...
Therefore, $\frac{10!}{5!} = 10\times9\times8\times7\times6 = 30240$ non-equivalent five-digit numbers exist
Where is my reasoning wrong (or is the given solution wrong)?
2002 seems like a small number
Consider cases: Since strings in which the same digits appear the same number of times are equivalent, what matters is which digits are used and how often each digit appears in the five-digit string.
Since the cases are mutually exclusive and exhaustive, the answer can be found by adding the results for the above cases.