I have a statement:
In a class of 10 students, $3$ prizes will be awarded.
What is the total combination of awards, if:
$i)$ Each player receives a SINGLE prize and the prizes are different.
$ii)$ Each player receives a SINGLE prize and the prizes are the same.
$iii)$ A player can repeat all the prizes, and the prizes are the same.
Well, my development was:
Let the prizes, be called $A, B, C$
$i)$ The price $A$ have 10 players to be distributed, $B$ have 9 players, $C$ have 8 players, so the total cases are: $10*9*8 = 720$
$ii)$ The same argument for $i)$, but now the order doesn't matter, so I can assume that: $ABC = BCA = CBA$, because $A = B = C $....
Therefore, to undo the repeated combinations i need the permutation of $3$, so the total combinations will be: $\frac{10*9*8}{3!} = 120$
$iii)$ Well, with the formula of $C_{repetition}(n, r) = \frac{(n+r-1)!}{(n-1)!r!}$
The result will be: $C_{rep}(10, 3) = \frac{12!}{9!3!} = 220$
The three results are good, but with the exercise $iii)$ i have some problems of understanding.
$A)$ ¿How i can get the correct result of the third exercise, using only the multiplicative and additive principle, in a intuitive way?
$B)$ ¿What is the intuitive and the formal proof of the formula: $\frac{(n+r-1)!}{(n-1)!r!}$ ?
One way is to break the $iii)$ into three scenarios: 1) Three players get a prize. 2) Two players get a prize (one gets two). 3) One player gets three prizes. Case one is the same as $ii)$. Case two is $10*9$. Case three is simply $10$.