We have $n$ identical objects, and we want to distribute them to $3$ different children A, B, C. In how many ways can this assignment be done?
Please note that for example if we had $6$ objects, if A gets $4$, B gets $2$ and C gets $0$, it's different from A gets $4$, B gets $0$ and C gets $2$. Compute the general formula and then find the correct answer if $n=9$.
Answer: 84
No matter what, I still don't get the correct answer. I tried as such: I lined up the $n$ objects , (let's draw them as $0$s). Now I want to separate them into $3$ teams. I am going to throw randomly two sticks ( imagine them as $1$s) . Where they fall, they will form the limits of each child's objects. For example $01 0 0 01 0 0 0 $ : Now take a look at left if the first stick: That's going to be how many objects A gets ( here is 1), between the first stick and the second it's what B gets, and what remains goes to C. If we had : $1 0 0 0 0 0 0 0 1$ A gets $0$, B gets everything, C gets $0$, if we had $ 110 0 0 0 0 0 0$ ** A gets $0$, B gets $0$, C gets it all** and so on... So, we actually need to compute how to throw 2 identical sticks into $(n-1) + 2 = (n+1)$ holes, which can be done in $C(n+1 + 2 -1, 2)=C(n+2,2)$ which for $n=9 \rightarrow C(11,2)=55$. What am I missing?