The way I understand it, many uniform probability problems can be solved by looking at either permutations or combinations.
Example problem:
3 people taking the elevator can go out on 9 different floors. Assume equal probability for any person going out on any floor. What is the probability that every person goes out on a different floor?
All possible permutations: Any of the 9 floors can be chosen 3 times = permutations with replacement = $9^3$.
Satisfactory permutations: Permutations without replacement = 9P3.
Probability = $\frac{9P3}{9^3}$ = $\frac{56}{81}$
...which is correct.
Now I thought I could do the same, but with respect to combinations, dividing "combinations without replacement" by "combinations with replacement":
Probability = $\frac{9C3}{11C3}$ = $\frac{28}{55}$
So the answers are not the same. And I don't understand why the latter doesn't work. Knowing the probability and thinking that in the combinations case the denominator should be 11C3, then i calculate that the nominator must be a fraction... which I interpret as there is no way to reach the answer by looking at combinations. Could someone please explain to me whether that is right or wrong, and why?