2

Find the co-efficient of y4 in the expansion of (y+3)3(2-y)5

flag

2 Answers

1

Firstly, we should note the first 6 rows of Pascal's triangle (for more information see the Wikipedia entry on Pascal's triangle).

              1             
             1 1
            1 2 1
           1 3 3 1
          1 4 6 4 1
         1 5 x x 5 1

using x=10 (for neatness)

Using polynomial expansion, which employs Pascal's trianagle, we would obtain for the (y+3)3 component:

y3 + 9y2 + 27y + 27 (1)

and for the (2-y)5 component:

-y5 + 10y4 -40y3 + 80y2 -80y + 32 (2)

The point Colin was making was that to obtain the co-efficient of y4 after components (1) and (2) multiply is that you are interested in the products of:

y3 and -80y

9y2 and 80y2

27y and -40y3

27 and 10y4

You can simply consider addition of the products of the coefficients for each of the four pairs:

-80 + (9 x 80) + (27 x -40) + (27 x 10) = -80 + 720 -1080 + 270 = -170

Thus, co-efficient of y4 in the expansion of (y+3)3(2-y)5 is -170.

link|flag
0

This is really easy to complete with the Binomial Theorem (example)

The procedure is to find the y4 term, which can either be:

  1. y3 x y1
  2. y2 x y2
  3. y1 x y3
  4. y0 x y4

All these terms will exist, and will create a y4 term, so (i) find each of their coefficients and then (ii) add them together.

Let me know if you need more guidance than that.

link|flag
Ohh okay, there was an example that used Pascals triangles. Not sure where that fits in ? – Phresh Feb 15 at 12:32
For the (y+3)^3 term, use row 3 of Pascal's triangle: "1 3 3 1", and then for (2-y)^5 term, use row 5: "1 5 10 10 5 1". If you're not sure how to use them, refer to this answer: merspi.com/questions/1149/… – Collin Li Feb 15 at 22:58

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.