Have a simple problem where I need to find multiplier of $x^6$ in $(2+x+3*x^2)^4$
I tried doing it like this:
$ a = 2; b = x; c = 3*x^2$
Using multinomial theorem :
Possible combinations that give me $x^6$ would be bbcc and accc
$\frac{4!}{0!2!2!} * 2^0*x^2*(3*x^2)^2 + \frac{4!}{1!0!3!} * 2^1*x^0*(3*x^2)^3 = 270$
But the given answer for the multiplier in textbook is 63.
Where did I make the mistake? Any help appreciated, thanks.