The number of ways to distribute 5 red,6 black and 7 green balls equally in three different boxes such that all the boxes get balls of all the three colours. (assume balls of same colour are identical)
My attempt:
Assume the three boxes get $x_1$, $x_2$, and $x_3$ red balls respectively.
Then, $x_1$ + $x_2$ + $x_3$=5 where $x_i > 1$.
Similarly I solved the multinomial for all the black and green balls and multiplied them. But how do I take care of the condition that each box contains 6 balls(equal number)?
Hint:
You know that the boxes MUST contain:
[RRGB..], [RGB...], [RGB...]
because there must be an R, a G and a B in each box, and then one of the remaining Rs must go into SOME box (which we can call the first box).
This leaves R, B, B, B, G, G, G, G to be placed in the unfilled "slots."
There are only two distinguishable slots for the sole remaining R, producing:
[RRRGB.], [RGB...], [RGB...]
or
[RRGB..], [RRGB..], [RGB...]
For each of these two conditions you have the remaining B, B, B, G, G, G, G to fill the empty slots.
Continue along this reasoning...