Suppose I have a list of $2000$ words and I want to combine them, randomly choosing a word from this list each time
e.g. Apple-Orange-Boat or Apple-Apple-Apple
How many possible combinations are there?
Is it simply $2000^3$?
Suppose I have a list of $2000$ words and I want to combine them, randomly choosing a word from this list each time
e.g. Apple-Orange-Boat or Apple-Apple-Apple
How many possible combinations are there?
Is it simply $2000^3$?
No. If you want a combination, then "Apple-Orange-Boat" is the same as "Orange-Boat-Apple". The order does not matter and therefore $2000^3$ is counting too much. For combination with repetitions, your answer is $$\begin{pmatrix}n+k-1\\k-1\end{pmatrix}=\begin{pmatrix}2000+3-1\\3-1\end{pmatrix}=\begin{pmatrix}2002\\2\end{pmatrix}.$$
Of course, if you want to consider the order, then you are not talking about combinations. In this case, the answer would be $2000^3$.
Without ordering and without repetitions, eg Apple-Orange-Boat is the same as Orange-Apple-Boat and Orange-Orange-Orange is not allowed:
$$ {n \choose k} = {n \choose n-k} = \frac{n!}{k!(n-k)!} = \frac{2000!}{3!(2000-3)!} = 1.331334E9 $$
Without ordering and with repetitions, eg Apple-Orange-Boat is the same as Orange-Apple-Boat and Orange-Orange-Orange is allowed:
$$ {n+k-1 \choose k} = {n+k-1 \choose n-1} = \frac{(n+k-1)!}{k!(n-1)!} = \frac{(2000+3-1)!}{3!(2000-1)!} = 1.335334E9 $$
With ordering and without repetitions, eg Apple-Orange-Boat is different from Orange-Apple-Boat and Orange-Orange-Orange is not allowed:
$$ \frac{n!}{(n-k)!} = \frac{2000!}{(2000-3)!} = 7.988004E9 $$
With ordering and with repetitions, eg Apple-Orange-Boat is different from Orange-Apple-Boat and Orange-Orange-Orange is allowed:
$$ n^k = 2000^3 = 8E9 $$
So, based on your comments, your instinct was indeed correct.