Polynomial Long Division and Synthetic Division
Polynomial division is a method used to divide polynomials, much like dividing numbers in arithmetic. There are two main techniques for polynomial division: polynomial long division and synthetic division. Both methods are used for dividing polynomials, but synthetic division is a shortcut specifically for dividing by a linear divisor (a divisor of the form x−c).
1. Polynomial Long Division
Polynomial long division is similar to the traditional long division you perform with numbers, but here you divide polynomials instead.
Steps for Polynomial Long Division:
Let’s divide the polynomial x+2x3+4x2−2x−6.
-
Divide the first term of the numerator by the first term of the denominator:
- Divide x3 by x, which gives x2.
- This is the first term of the quotient.
-
Multiply the divisor by this term:
- Multiply (x+2) by x2 to get x3+2x2.
-
Subtract the result from the numerator:
- Subtract (x3+2x2) from x3+4x2−2x−6:
(x3+4x2−2x−6)−(x3+2x2)=2x2−2x−6
-
Repeat the process with the new polynomial:
- Now, divide the first term of the new polynomial, 2x2, by x, which gives 2x.
- Multiply (x+2) by 2x to get 2x2+4x.
- Subtract (2x2+4x) from 2x2−2x−6:
(2x2−2x−6)−(2x2+4x)=−6x−6
-
Repeat again:
- Divide the first term −6x by x, which gives −6.
- Multiply (x+2) by −6 to get −6x−12.
- Subtract (−6x−12) from −6x−6:
(−6x−6)−(−6x−12)=6
- The remainder is 6.
-
Write the final result:
- The quotient is x2+2x−6, and the remainder is 6.
- So, the division is:
x+2x3+4x2−2x−6=x2+2x−6+x+26
General Steps for Polynomial Long Division:
- Divide the leading term of the dividend by the leading term of the divisor to get the first term of the quotient.
- Multiply the entire divisor by this term and subtract the result from the dividend.
- Repeat this process with the new polynomial formed by the subtraction.
- Continue until the degree of the remainder is less than the degree of the divisor.
- The final result is the quotient plus the remainder divided by the divisor.
2. Synthetic Division
Synthetic division is a faster, simpler method for dividing a polynomial by a linear divisor of the form x−c, where c is a constant. It eliminates the need to write out all the terms of the divisor and focuses on using just the coefficients of the polynomial.
Steps for Synthetic Division:
Let’s divide x3+4x2−2x−6 by x+2, using synthetic division.
-
Write the coefficients of the dividend:
- The coefficients of x3+4x2−2x−6 are 1,4,−2,−6.
-
Set up the synthetic division table:
- Write the divisor’s root x+2, so x+2=0 implies c=−2.
- Set up the synthetic division table with −2 on the left and the coefficients of the polynomial on the right.
−214−2−6
-
Bring down the first coefficient:
- Bring down the first coefficient 1 directly below the line.
−2114−2−6
-
Multiply and add:
- Multiply 1 by −2 (the root c=−2), and place the result under the second coefficient: 1×(−2)=−2.
- Add this result to the second coefficient: 4+(−2)=2.
- Continue this process for the remaining coefficients.
−2114−22−2−4−6−6126
Now, the results are:
- Multiply 2×(−2)=−4, add it to −2, getting −6.
- Multiply −6×(−2)=12, add it to −6, getting a remainder of 6.
-
Write the final result:
- The quotient is the row of numbers 1,2,−6, representing the polynomial x2+2x−6.
- The remainder is 6.
Therefore, the result of the division is:
x+2x3+4x2−2x−6=x2+2x−6+x+26
Comparison: Polynomial Long Division vs. Synthetic Division
| Feature |
Polynomial Long Division |
Synthetic Division |
| Applicable to |
Any polynomial divisor |
Only when dividing by a linear factor x−c |
| Steps |
More detailed, includes writing out each multiplication and subtraction |
Faster and more efficient, uses only coefficients |
| Ease of Use |
More involved and slower, especially with higher-degree polynomials |
Easier and faster for linear divisors |
| Result Format |
Quotient + remainder expressed as a fraction |
Quotient + remainder in the form of a constant |
Conclusion
- Polynomial Long Division is the more general method for dividing polynomials, useful for any type of divisor, but requires more steps and space.
- Synthetic Division is a faster and more efficient method for dividing polynomials when the divisor is of the form x−c. It’s simpler and involves fewer steps, but can only be used in this specific case.
Both methods are fundamental tools for dividing polynomials and are frequently used in algebra, calculus, and higher-level mathematics.