3.1: Polynomial Division
( \newcommand{\kernel}{\mathrm{null}\,}\)
Polynomial long division is an algorithm for dividing a polynomial by another polynomial of the same or lower degree, a generalized version of the familiar arithmetic technique called long division. It can be done easily by hand, because it separates an otherwise complex division problem into smaller ones.
1. Review of Long Division
Solution
4 | 1 | ||||
12 | | | 4 | 9 | 5 | |
4 | 8 | ||||
1 | 5 | ||||
1 | 2 | ||||
3 |
We see that we follow the steps:
-
Write it in long division form.
-
Determine what we need to multiply the quotient by to get the first term.
-
Place that number on top of the long division sign.
-
Multiply that number by the quotient and place the product below.
-
Subtract
-
Repeat the process until the degree of the difference is smaller than the degree of the quotient.
-
Write as sum of the top numbers + remainder/quotient.
Below is a nonsintactical version of a computer program:
while (degree of denominator < degree of remainder)
do
{
divide first term of remainder by first term of denominator and place above
quotient line;
multiply result by denominator and place product under the remainder;
subtract product from remainder for new remainder;
}
Write expression above the quotient line + remainder/denominator;
2. Synthetic Division
-
Bring down the -2.
-
Multiply
and place it under the 0. -
Add
and place it in the third row. -
Multiply
and place it under the 1. -
Add
and place it in the third row. -
Multiply
and place it under the 7. -
Add
and place it in the third row. -
Write
.
For the special case that the denominator is of the form
Step 1:
Drop all the x's filling in zeros where appropriate and set up the division
r | a b c d
and place a horizontal line leaving space between the numbers and the line.
Step 2:
Put the first coefficient under the line
r | a b c d
a
Step 3:
Multiply
coefficient.
r | a b c d
ra
a
Step 4:
Add the second column and place the sum below the line.
Step 5:
Repeat steps 3 and 4 until there are no more columns.
Step 6:
The last number is the remainder and the first numbers are the coefficients
of the polynomial
_ | _ | _ | _ | _ | |
-1 | | | -2 | 0 | 1 | 7 |
2 | 2 | 1 | |||
_ | _ | _ | _ | _ | |
-2 | 2 | 1 | 8 | ||
Steps:
-
Bring down the -2.
-
Multiply
and place it under the 0. -
Add
and place it in the third row. -
Multiply
and place it under the 1. -
Add
and place it in the third row. -
Multiply
and place it under the 7. -
Add
and place it in the third row. -
Write
.
3. The Remainder Theorem
Theorem: The Remainder Theorem
For any polynomial
In particular, if
Proof:
Multiply both sides by
Plugging in
using the remainder theorem.
Larry Green (Lake Tahoe Community College)
Integrated by Justin Marshall.