Given two polynomials, f(x) and d(x), if the degree of the divisor d(x) is less than or equal to the degree of the dividend f(x), then there is a unique polynomial quotient q(x) and a unique polynomial remainder r(x), such that:
The degree of r(x) is less than the degree of d(x). If r(x) = 0, then d(x) is a factor of f(x). The process of performing such a division is called long division. Long division of polynomials can done in a manner similar to long division of real numbers. For example, to divide x2 + 3x + 4 by x + 2 set up as follows:f(x) r(x) ---- = q(x) + ---- d(x) d(x)
_____________
x + 2 )2x² + 3x + 4
Remove the first term of the dividend by multiplying the divisor by 2x
and subtracting.
2x
x + 2 )2x² + 3x + 4
2x² + 4x
-1x + 4
Next, multiply the divisor by -1 and subtract from the remainder of
the previous step:
2x - 1
x + 2 )2x² + 3x + 4
2x² + 4x
-1x + 4
-1x - 2
6
Note that each column is in the same degree with the highest to the left.
The result is:
2x² + 3x + 4 6
------------ = 2x - 1 + -----
x + 2 x + 2
The binomial 2x - 1 is the polynomial quotient and 6 is
the remainder. The degree of the remainder is less than the degree of the
divisor. To check the result, multiply the quotient by the divisor and add
the remainder:
The remainder theorem can be derived from the polynomial quotient formula. Let,(2x - 1)(x + 2) + 6 = 2x² + 4x - x - 2 + 6 = 2x² + 3x + 4
Then rewrite the formula as:d(x) = x - a
Set x = a, thenf(x) = (x - a) q(x) + r(x)
f(a) = (a - a)q(a) + r(a) = r
Now try another example, divide x³ - 8 by x - 2:(-2)³ + 2(-2)² + 3(-2) + 4 = -8 + 8 - 6 + 4 = -2
x² + 2x + 4
x - 2 )x³ + 0x² + 0x - 8
x³ - 2x²
2x² + 0x - 8
2x² - 4x
4x - 8
4x - 8
0
Terms with 0 a the coefficient were included in the dividend to
make the long division process work out correctly. The result is:
Because the remainder is equal to zero, the polynomial has been factored into two polynomials of lower degree,x³ - 8 ------ = x² + 2x + 4 x - 2
Applying the remainder theorem to this problem would givex³ - 8 = (x - 2)(x² + 2x + 4)
The factor theorem is derived from the remainder theorem for a remainder of zero.f(2) = (2)³ - 8 = 8 - 8 = 0
Example, is (x + 2) a factor of f(x) = x² + 5x + 6?
f(-2) = (-2)² + 5(-2) + 6 = 4 - 10 + 6 = 0Therefore, (x + 2) is a factor of f(x)