In how many ways can I distribute $6$ identical cookies and $6$ identical candies to $4$ children, if each child must receive at least $1$ of each type of item?
I know how to distribute the things if they are a specific amount, but I'm struggling with the "at least" part.
Lets say $A,B,C,D$ are $4$ children and you need to distribute $6$ identical candies and $6$ identical cookies.
Now first each $A,B,C,D$ children will get $1$ candy and $1$ cookie.
So, now we have to distribute the remaining $2$ candies and $2$ cookies among $4$ children.
To distribute $2$ candies use the formula $$^{n+r-1}C_{n-1}$$ where $n=4,r=2$ $$^{4+2-1}C_{4-1}=\ ^ 5C_3=\frac{5!}{2!\cdot3!}=10\ ways$$
Again to distribute $2$ cookies use the formula $$^{n+r-1}C_{n-1}$$ where $n=4,r=2$ $$^{4+2-1}C_{4-1}=\ ^ 5C_3=\frac{5!}{2!\cdot3!}=10\ ways$$
So, total number of ways $=10\times 10=100$ ways.