Factorising polynomials from their roots
If you have a polynomial
, you can factorise it by finding it’s roots. The easiest method is Newton’s method, which can also be used on a scientific calculator:
On a calculator, type in a number, press equals, press AC, type in the formula, replacing the with Ans (or whatever your calculator uses), and keep on hitting the equals button until you get a stable number. That’s one root. Now, press AC, type in another number, press equals, press AC, type in the formula, and so on. Hopefully, you’ll get another root. Keep on repeating with different starting numbers until you get the same number of roots as the degree of the polynomial (maybe you should check for multiple roots…).
The fundamental theorem of algebra states that every nth degree polynomial can be written as (where xn are the polynomial’s roots):
So that means equals that (replace the xns with the roots you found). We’re almost there, but we still don’t know what C is. Notice that when you expand
, the last term (the constant) in the result is equal to
. So to find C we use:
Now try to make the xns integral by “spreading” C and multiplying.
Here’s an example:
Find the roots of the polynomial, and you will get ,
and
. So:
Now we must find C. Using the formula:
So now:
“Spread” C to make the xns integral:
