I have a problem, how to distinguish between combinations and combinations with repetition.
Here is an example:
There are 10 different alcoholic drinks at the celebration. In how many different ways can I choose a drink for 15 people, so that every person drinks only one of the species?
My question is, how should I know, that I have to find combinations instead of combinations with repetition?
The answer to provided example is C(15 + 10 - 1) over (10 - 1)).
My solution was: Everyone can choose 1 drink from 15. Together it is 10*10*....10 = 10^15