Q:

can someone please solve this for me by using synthetic division and write it in steps [tex]x ^{4}+2x ^{3}-10 x^{2}-18x+9=0 [/tex]

Accepted Solution

A:
If you don't want to test random numbers to see what reduces the polynomial to 0, you can try applying the rational root theorem to narrow down the possible choices. The RRT says that the polynomial *may* have rational roots determined by the leading and constant coefficients.

Factors of constant term: [tex]\pm1,\pm3,\pm9[/tex]
Factors of leading term's coefficient: [tex]\pm1[/tex]
Possible rational roots: [tex]\pm1,\pm3,\pm9[/tex]
(i.e. divide all factors of constants terms by all factors of leading coefficient)

Denoting the given polynomial by [tex]p(x)[/tex], we get

[tex]p(1)=-16[/tex]
[tex]p(-1)=16[/tex]
[tex]p(3)=0[/tex]
[tex]p(-3)=0[/tex]
[tex]p(9)=7056[/tex]
[tex]p(-9)=4464[/tex]

which tells us that [tex]\pm3[/tex] are actually roots to [tex]p(x)[/tex]. In other words, we can factor [tex]p(x)[/tex] as

[tex]p(x)=(x-3)(x+3)(\text{some quadratic})[/tex]

Now that we know some roots to the polynomial, we can factor via synthetic division. First by [tex]x-3[/tex]:

3   |   1   2   -10   -18    9
.    |        3    15    15   -9
- - - - - - - - - - - - - - - - - -
.    |   1   5      5     -3    0

which says

[tex]\dfrac{x^4+2x^3-10x^2-18x+9}{x-3}=x^3+5x^2+5x-3[/tex]

Next by [tex]x+3[/tex] (this time dividing the cubic above):

-3   |   1   5   5   -3
.     |       -3  -6    3
- - - - - - - - - - - - - -
.     |   1   2  -1    0

which means

[tex]\dfrac{x^3+5x^2+5x-3}{x+3}=x^2+2x-1[/tex]

Putting both steps together, we found that

[tex]x^4+2x^3-10x^2-18x+9}{(x-3)(x+3)}=x^2+2x-1[/tex]

(FYI: There's an alternative algorithm that we could use to immediately divide [tex]p(x)[/tex] by [tex](x-3)(x+3)=x^2-9[/tex])

so it turns out that [tex](\text{some quadratic})=x^2+2x-1[/tex], whose roots you can find with the quadratic formula. We get

[tex]p(x)=(x-3)(x+3)(x^2+2x-1)=0\implies x=\pm3, x=-1\pm\sqrt2[/tex]