Question:
The employee is distributing 7 objects among 4 containrs (Xi's).
Assuming the containers are X1 + X2 + X3 + X4 = 7 where Xi >= 0 $\forall$ 1<= i <= 4.
Determine all integer solutions.
Logical Questions:
- How do we understand this question involves combination with repetition ?
- My answer: Order does not matter, and we are allowed to place as many objects we can inside a container which suggests repetition is allowed, so we use combination with repetition $n + r - 1 \choose r$. Am I right?
- What is n and what is r ? (I don't understand this).
- My answer: To me at first, I thought the number of containers were the limiting factor, so r = 4, and n = 7. However, the objects are the limiting factors I believe ?