What is Synthetic Division?
Synthetic division is a shorthand method for dividing a polynomial by a linear factor of the form $x - c$. It is faster and involves fewer calculations than traditional long division, using only the coefficients of the polynomial.
Key Insight: Synthetic division only works when the divisor is a linear binomial with a leading coefficient of 1 (in the form $x - c$ or $x + c$). For other divisors, you must use polynomial long division.
When Synthetic Division Works
Use synthetic division when:
- The divisor is linear: it must look like $x - a$ or $x + a$
- The leading coefficient of the divisor is 1 (i.e., $x - a$, not $2x - 3$)
- The dividend is written in descending powers, with zero coefficients filled in for any missing powers
Example of "fixing" a polynomial:
$2x^3 + 5x + 1$ → write coefficients as $2, 0, 5, 1$ because the $x^2$ term is missing, so its coefficient is 0.
KaTeX Template for Synthetic Division
Since KaTeX doesn't have a built-in synthetic division environment, we use arrays and vertical bars. Here's the template format:
Where $c$ is the root, $a_i$ are the original coefficients, and the bottom row contains the quotient coefficients plus the remainder.
Step-by-Step Process
To divide $P(x)$ by $x - a$:
- Write the "root" $a$ on the left (since $x - a = 0 \Rightarrow x = a$). For $x + 3$, the root is $-3$.
- Write the coefficients of $P(x)$ in a row, using zeros for missing powers.
- Bring down the first coefficient unchanged.
- Multiply that number by $a$; write the result under the next coefficient.
- Add down the column.
- Repeat multiply-add until you reach the end.
- Interpret the bottom row:
- All but the last number are coefficients of the quotient
- The last number is the remainder
Remember: If you start with a degree $n$ polynomial, the quotient has degree $n-1$.
Worked Examples
Example 1: Simple Cubic with Remainder
Divide $P(x) = 2x^3 - 3x^2 - 11x + 6$ by $x - 2$.
Solution: Divisor $x - 2$ → root $a = 2$
Step 1: Set up the coefficients
Write the root on the left and the coefficients in a row
Step 2: Bring down the first coefficient
Bring the first number (2) straight down
Step 3: Multiply and add
Multiply the bottom number (2) by the root (2): $2 \times 2 = 4$. Add to the next coefficient: $-3 + 4 = 1$
Step 4: Repeat multiply-add
Multiply by root again: $1 \times 2 = 2$. Add to next coefficient: $-11 + 2 = -9$
Step 5: Final multiply-add
Multiply by root again: $-9 \times 2 = -18$. Add to last coefficient: $6 + (-18) = -12$
Final Results:
Bottom row: $2, 1, -9, -12$
Quotient coefficients: $2, 1, -9$ → $2x^2 + x - 9$
Remainder: $-12$
Example 2: Zero Remainder (Factor)
Divide $P(x) = x^3 - 6x^2 + 11x - 6$ by $x - 1$.
Solution: Divisor $x - 1$ → root $a = 1$
Step 1: Set up the coefficients
Write the root on the left and the coefficients in a row
Step 2: Bring down the first coefficient
Bring the first number (1) straight down
Step 3: Multiply and add
Multiply by root: $1 \times 1 = 1$. Add to next coefficient: $-6 + 1 = -5$
Step 4: Repeat multiply-add
Multiply by root again: $-5 \times 1 = -5$. Add to next coefficient: $11 + (-5) = 6$
Step 5: Final multiply-add
Multiply by root again: $6 \times 1 = 6$. Add to last coefficient: $-6 + 6 = 0$
Final Results:
Bottom row: $1, -5, 6, 0$
Quotient coefficients: $1, -5, 6$ → $x^2 - 5x + 6$
Remainder: $0$ ✅ (This means $x - 1$ is a factor!)
Example 3: Missing Term Requires Zero
Divide $P(x) = 3x^3 + 5x - 4$ by $x + 2$.
Solution: Divisor $x + 2$ → root $a = -2$
⚠️ Important!
The polynomial $3x^3 + 5x - 4$ is missing the $x^2$ term, so we need to include a 0 as a placeholder coefficient.
Step 1: Set up the coefficients
Write the root on the left and the coefficients in a row (include 0 for missing $x^2$ term)
Step 2: Bring down the first coefficient
Bring the first number (3) straight down
Step 3: Multiply and add
Multiply by root: $3 \times (-2) = -6$. Add to next coefficient: $0 + (-6) = -6$
Step 4: Repeat multiply-add
Multiply by root again: $-6 \times (-2) = 12$. Add to next coefficient: $5 + 12 = 17$
Step 5: Final multiply-add
Multiply by root again: $17 \times (-2) = -34$. Add to last coefficient: $-4 + (-34) = -38$
Final Results:
Bottom row: $3, -6, 17, -38$
Quotient coefficients: $3, -6, 17$ → $3x^2 - 6x + 17$
Remainder: $-38$
Key Uses and Theorems
Finding Zeros and Factoring
Synthetic division is often used to find the roots (zeros) of a polynomial. If the remainder after division by $x - c$ is zero, then $x - c$ is a factor of the polynomial, and $c$ is a zero of the function.
Remainder Theorem
This theorem states that if a polynomial $f(x)$ is divided by $x - c$, the remainder is equal to $f(c)$. Synthetic division provides a quick way to evaluate $f(c)$.
Practice Problems
Try these with the same steps. You can check your answers using long division or graphing tools.
Problem 1:
$(2x^3 - 7x^2 + x + 6) \div (x - 3)$
Problem 2:
$(x^4 - 2x^3 + 5x - 3) \div (x + 1)$ (remember the $x^2$ placeholder)
Problem 3:
$(6x^3 + 5x^2 - 7) \div (x - 1)$ (placeholder for $x$-term)