2
$\begingroup$

In how many ways is it possible divide 6 identical blue , 6 identical green and 6 identical red items among 3 people such that each gets equal number of items.

The problem in my book says two people but I read it wrong and started to figure it out for 3, which I couldn't. Though I know how to do the correct question I wanted to know how we would solve this for 3 people. It would be great if someone could provide me with a hint to solve this question as I don't know what approach to adopt.

  • 1
    The number you're looking for can be modeled as 3x3 squares with constrained row and column sums. It's certainly possible to calculate it with some computation, but I'm not sure that there's any sort of explicit form for it.2017-02-28
  • 1
    The generating function for this is $((1-xb)(1-xg)(1-xr)(1-yb)(1-yg)(1-yr)(1-zb)(1-zg)(1-zr))^{-1}$. In your case you want the coefficient of $(xyzrgb)^6$.2017-02-28
  • 1
    Using the following input in [sage](http://sagecell.sagemath.org): var('x y z r g b') f(x,y,z,r,g,b)=((1-x*b)*(1-x*g)*(1-x*r)*(1-y*b)*(1-y*g)*(1-y*r)*(1-z*b)*(1-z*g)*(1-z*r))^(-1) taylor(f,(x,0),(y,0),(z,0),(r,0),(g,0),(b,0),36).coefficient(x^6).coefficient(y^6).coefficient(z^6).coefficient(r^6).coefficient(g^6).coefficient(b^6) gives a result of $\mathbf{406}$2017-02-28
  • 1
    @N.Shales Okay...thank you so much2017-03-01

0 Answers 0