Lesson 43: Synthetic Division
Synthetic division is a shortcut method for dividing a polynomial by a linear factor of the form x − c. It is faster and simpler than long division for these cases.
Steps for Synthetic Division
- Write down the coefficients of the dividend polynomial in order.
- Write c (from x − c) to the left.
- Bring down the first coefficient.
- Multiply it by c and write the result under the next coefficient.
- Add the column.
- Repeat multiply and add until all coefficients are processed.
- The last number is the remainder; the others are coefficients of the quotient polynomial.
Example
Divide f(x) = 2x³ − 3x² + 4x − 5 by x − 2
- Coefficients: 2, −3, 4, −5
- c = 2 (from x − 2)
- Set up synthetic division:
- Bring down 2 → multiply 2×2=4 → add −3+4=1
- Multiply 1×2=2 → add 4+2=6
- Multiply 6×2=12 → add −5+12=7
- Quotient: 2x² + x + 6, Remainder: 7
- Result: f(x)/(x−2) = 2x² + x + 6 + 7/(x−2)
2 | 2 -3 4 -5
|____
Practice Problems
- Divide x³ + 3x² − 4 by x + 2
- Divide 3x³ − 5x² + 2x − 7 by x − 1
- Divide 2xⴠ− 3x³ + x² − 4 by x + 2
- Divide x³ − 6x² + 11x − 6 by x − 1
- Divide 4x³ + x² − 5x + 2 by x − 2
