
Dom V. answered 09/28/15
Tutor
5.0
(119)
Cornell Engineering grad specializing in advanced math subjects
Unfortunately there is no straightforward plug-and-chug rule for factoring a cubic polynomial. The one thing that we can say for any polynomial is that if x=r is a root to the polynomial expression, one of its factors will be (x-r). When we deal with a cubic equation, we expect three roots--call them r1, r2, and r3.
It might seem like an arbitrary thing to do (because it is), but one of the quickest ways of finding the roots is to just guess-and-check simple values. I'll try 0, 1, 2, and 3:
f(x)= x3-7x-6
f(0)= 03-7*0-6 = 0-0-6 = -6 x=0 is not a root, so (x-0)=x is not a factor.
f(1)= 13-7*1-6 = 1-7-6 = -12 x=1 is not a root, so (x-1) is not a factor.
f(2)= 23-7*2-6 = 8-14-6 = -12 x=2 is not a root, so (x-2) is not a factor.
f(3)= 33-7*3-6 = 27-21-6 = 0 x=3 is a root, so (x-3) is a factor.
We know x3-7x-6 factors into something that looks like (x-3)(........). From here, we have two options:
- Do polynomial division to figure out what's left over: (.......)=(x3-7x-6)/(x-3). Polynomial division is messy though, and if we can avoid it that would be nice.
- Keep guessing for more roots!
We found some roots corresponding to positive x, so let's look the other way:
f(-1)= (-1)3-7*(-1)-6 = -1+7-6 = 0 x=-1 is a root. (x+1) is a factor.
f(-2)= (-2)3-7*(-2)-6 = -8+14-6 = 0 x=-2 is a root. (x+2) is a factor.
We got lucky, and guess and check found the roots fairly quickly. We conclude that x3-7x-6=(x-3)(x+2)(x+1).
Just for the sake of it, multiply the factored polynomial together again just to make sure we've got an acceptable answer.
(x-3)(x+2)(x+1)
(x2+2x-3x-6)(x+1)
(x2-x-6)(x+1)
(x2-x-6)x + (x2-x-6)1
x3-x2-6x+x2-x-6
x3-7x-6