When using synthetic division to test possible roots of a polynomial, do you have to try every possible root? Because it seems that would take forever on problems with large constant and coefficient values.
Also, do you have to get it down to a quadratic function for all problems like this before you can factor or will there be some polynomials that have 4 terms after trying all possible roots?
Thanks!
I assume you mean trying the rational root test. If you go about it that way [testing by synthetic division], yes you need to try all roots [unless you find one and reduce the polynomial]. For example suppose we have
f(x) = 6 x
3 - 2 x
2 - 6 x + 2
We have 12 possibilities, one of which is x=1. However, rather than do a (synthetic) division, we could just try x=1 and quickly find out it was a root. If you started somewhere else, say x =1/3, you could multiply f(1/3) by 27 [ the cube of the denominator 3] to get
27 f(1/3) = 6 [27 * (1/27)] - 2 [27 (1/9)] - 6 [27 (1/3)] + 2 [27] = 6 - 6 - 54 + 54 = 0
which, IMO, is a bit easier than synthetic division.
As far as always getting it down to a quadratic, no you won't. A simple example of this is
g(x) = 3 x
5 - 2 x
4 + 3 x - 2 = (3 x - 2) (x
4 + 1)
EDIT: As additional statements (after reading Jomo's reply), if you find x=1 is a root in the first example, do the synthetic division to get the factors (x-1) and q(x) for f(x),
q(x) = 6 x
2 + 4 x - 2
which might, in a different problem, be a polynomial of degree larger than 2.
To repeat something you may already know, had you tried the x = 1/3 solution, do the synthetic division as
f(x) / (3 x - 1)
and you will possibly find it easier. That is
f(x) / (denominator * x - numerator)