Synthetic Division
The "cheat code" for polynomial division. Faster, cleaner, and the secret to evaluating massive functions instantly.
Introduction
Prerequisite Connection: Long division works, but it takes up a lot of space and writing variables is tedious. If we are dividing by a simple linear term , there must be a faster way.
Today's Increment: We introduce Synthetic Division, a collapsed algorithm that uses only coefficients. We also connect it to the Remainder Theorem: dividing by gives you as the remainder.
Why This Matters for Calculus: You will frequently need to verify if a number is a root of a polynomial. Synthetic division is the fastest way to check this by hand.
Explanation of Key Concepts
Synthetic Division Steps
Write the "box number" (opposite sign of divisor). List coefficients of dividend.
Drop the first coefficient straight down below the line. This starts the chain.
Multiply the bottom number by . Put result in next column. ADD down. Repeat.
The Remainder Theorem
If polynomial is divided by , then the remainder is .
Worked Examples
Example 1: Performing the Algorithm
Divide .
The remainder is 7.
Answer: .
Example 2: Evaluation vs. Substitution
Given , find using synthetic division.
Example 3: Forcing a Remainder
Find such that when is divided by , the remainder is 8.
Common Pitfalls
- Sign Switcheroo:
If dividing by , you use in the box.
If dividing by , you use in the box.
(You solve ). - Adding vs Subtracting:
In Long Division, you subtract rows. In Synthetic Division, you ADD columns. Do not confuse them!
Real-World Application
Space Trajectories: Evaluation Speed
In orbital mechanics, spacecraft positions are often approximated by high-degree Taylor polynomials.
Computers use a method called Horner's Method to evaluate these polynomials. Horner's Method is mathematically identical to Synthetic Division! It reduces the number of multiplications needed, saving precious processor cycles on deep space probes.
Practice Quiz
Loading...