So here is the original problem
For the inter-hostel six-a-side football tournament, a team of 6 players is to be chosen from 11 players consisting of 5 forwards, 4 defenders and 2 goalkeepers. The team must include at least 2 forwards, at least 2 defenders and at least 1 goalkeeper. Find the number of different ways in which the team can be chosen.
Which I think can be written as $$ a+b+c=6; \quad 2\le a \le 5,\quad 2\le b \le 4\quad 1\le c \le 2 $$
I know how to solve the problem with combinations where we choose [(3,2,1), (2,3,1), (2,2,2)] which is of the form (#of forwards, #defenders, #goalkeepers), this gives answer as 260.
While solving the same problem with generating functions I arrived at following polynomial $$ x^2 (1+x+x^2+x^3) * x^2 (1+x+x^2) * x (1+x) $$ which is equivalent to $$ x^5 *\frac{(1-x^4)}{(1-x)} *\frac{(1-x^3)}{(1-x)} *\frac{(1-x^2)}{(1-x)}.$$
Now the problem is converted to finding $x^1$ in $ \frac{(1-x^4)}{(1-x)} *\frac{(1-x^3)}{(1-x)} *\frac{(1-x^2)}{(1-x)}$ and we can only get $x^1$ from $(1-x)^{-3}$ to which there are only 3 ways which is a wrong answer.
What is the correct method?