2.1.14Algebra — Introduction & Intermediate

Polynomial long division and synthetic division

2,242 words10 min readdifficulty · medium6 backlinks

Overview

Dividing polynomials is like dividing numbers, but we track powers of xx instead of place values. Two methods exist: long division (works for any divisor) and synthetic division (faster, but only for linear divisors of the form xcx - c).

Why learn this? Factoring polynomials, finding roots, simplifying rational expressions, and understanding the Remainder Theorem all depend on polynomial division.


[!intuition] The Core Idea

When you divide 847÷23847 \div 23, you ask: "How many 23s fit into 84?" Then subtract and bring down the next digit. Polynomial division is identical, except:

  • We ask "How many times does the leading term of the divisor fit into the leading term of the dividend?"
  • We subtract entire polynomial expressions
  • We "bring down" the next term

The result: Dividend=Divisor×Quotient+Remainder\text{Dividend} = \text{Divisor} \times \text{Quotient} + \text{Remainder}

For polynomials: P(x)=D(x)Q(x)+R(x) where deg(R)<deg(D) or R=0.P(x) = D(x) \cdot Q(x) + R(x) \text{ where } \deg(R) < \deg(D) \text{ or } R = 0.

with deg(R(x))<deg(D(x))\deg(R(x)) < \deg(D(x)) or R(x)=0R(x) = 0.

WHY does this work? Each step eliminates the highest-degree term of the current dividend by choosing the right quotient term. We repeatedly subtract multiples of D(x)D(x) until what remains has degree less than D(x)D(x).


[!formula] Long Division Algorithm (Step-by-Step)

Setup: Write P(x)P(x) and D(x)D(x) in descending powers, filling in 00 coefficients for missing terms.

Steps:

  1. Divide leading terms: leading term of dividendleading term of divisor\frac{\text{leading term of dividend}}{\text{leading term of divisor}} → first term of Q(x)Q(x)
    • WHY? This tells us "how many divisors fit" at the highest power
  2. Multiply: Multiply entire D(x)D(x) by this quotient term
    • WHY? We're subtracting out that portion of the dividend
  3. Subtract: Subtract the product from P(x)P(x)
    • WHY? Removes the highest-degree term, revealing the next dividend
  4. Bring down: Move to the next term
  5. Repeat until the degree of the remainder is less than deg(D(x))\deg(D(x))

[!example] Example 1: (2x3+3x25x+1)÷(x+2)(2x^3 + 3x^2 - 5x + 1) \div (x + 2)

Setup:

         _______________
x + 2 ) 2x³ + 3x² - 5x + 1

Step 1: Divide leading terms: 2x3x=2x2\frac{2x^3}{x} = 2x^2

  • Why? We need 2x22x^2 copies of (x+2)(x+2) to cancel the 2x32x^3 term
         2x²
         _______________
x + 2 ) 2x³ + 3x² - 5x + 1
        2x³ + 4x²         (multiply: 2x²(x+2))
        ────────
            -x² - 5x      (subtract)

Step 2: Divide: x2x=x\frac{-x^2}{x} = -x

         2x² - x
         _______________
x + 2 ) 2x³ + 3x² - 5x + 1
        2x³ + 4x²
        ─────────
            -x² - 5x
            -x² - 2x      (multiply: -x(x+2))
            ────
                 -3x + 1  (subtract)

Step 3: Divide: 3xx=3\frac{-3x}{x} = -3

         2x² - x - 3
         _______________
x + 2 ) 2x³ + 3x² - 5x + 1
        2x³ + 4x²
        ─────────
            -x² - 5x
            -x² - 2x
            ────────
                 -3x + 1
                 -3x - 6  (multiply: -3(x+2))
                ────
                       7  (remainder)

Result: 2x3+3x25x+1=(x+2)(2x2x3)+72x^3 + 3x^2 - 5x + 1 = (x+2)(2x^2 - x - 3) + 7

Verification: Expand (x+2)(2x2x3)+7(x+2)(2x^2 - x - 3) + 7:

  • (x+2)(2x2)=2x3+4x2(x+2)(2x^2) = 2x^3 + 4x^2
  • (x+2)(x)=x22x(x+2)(-x) = -x^2 - 2x
  • (x+2)(3)=3x6(x+2)(-3) = -3x - 6
  • Sum: 2x3+4x2x22x3x6+7=2x3+3x25x+12x^3 + 4x^2 - x^2 - 2x - 3x - 6 + 7 = 2x^3 + 3x^2 - 5x + 1

[!definition] Synthetic Division

A shortcut for dividing by linear divisors of the form (xc)(x - c). We work only with coefficients, using the value cc (not xcx - c!).

WHY cc not c-c? If dividing by (xc)(x - c), we use +c+c in synthetic division because the algorithm implicitly adds rather than subtracts.

Restriction: Only works when divisor is first-degree with leading coefficient 1.


[!formula] Synthetic Division Algorithm

Given: P(x)÷(xc)P(x) \div (x - c)

Steps:

  1. Write coefficients of P(x)P(x) in descending order (include 0s)
  2. Write cc to the left (the value that makes xc=0x - c = 0)
  3. Bring down the first coefficient
  4. Multiply by cc, write result under next coefficient
  5. Add the column
  6. Repeat multiply-add until done
  7. Last number is the remainder; others are quotient coefficients (one degree lower)

WHY does this work? Synthetic division is a compressed form of long division where we've removed the variable xx and optimized the arithmetic. Each multiply-add step mimics "multiply divisor by quotient term, then subtract."


[!example] Example 2: (2x3+3x25x+1)÷(x+2)(2x^3 + 3x^2 - 5x + 1) \div (x + 2) using Synthetic Division

Setup: Divisor is x+2=x(2)x + 2 = x - (-2), so c=2c = -2

Coefficients of 2x3+3x25x+12x^3 + 3x^2 - 5x + 1: [2,3,5,1][2, 3, -5, 1]

    -2 |  2    3   -5    1
       |     -4    2    6
       |________________
         2   -1   -3    7

Step-by-step:

  1. Bring down 22
    • Why? First coefficient of quotient is always first coefficient of dividend
  2. Multiply: 2×(2)=42 \times (-2) = -4, write under 33
    • Why? We're computing 2×(2)2 \times (-2) — multiplying the running quotient value by cc, not by the whole divisor
  3. Add: 3+(4)=13 + (-4) = -1
  4. Multiply: 1×(2)=2-1 \times (-2) = 2, write under 5-5
  5. Add: 5+2=3-5 + 2 = -3
  6. Multiply: 3×(2)=6-3 \times (-2) = 6, write under 11
  7. Add: 1+6=71 + 6 = 7 (remainder)

Result: Quotient is 2x2x32x^2 - x - 3, remainder is 77

2x3+3x25x+1=(x+2)(2x2x3)+72x^3 + 3x^2 - 5x + 1 = (x+2)(2x^2 - x - 3) + 7

Same answer as long division!


[!example] Example 3: Divide x43x2+2x^4 - 3x^2 + 2 by x1x - 1

Note the missing x3x^3 and xx terms — we use 0 coefficients.

Long Division:

         x³ + x² - 2x - 2
         ________________
x - 1 ) x⁴ +0x³ - 3x² + 0x + 2
        x⁴ - x³
        ────
             x³ - 3x²
             x³ - x²
             ────
                -2x² + 0x
                -2x² + 2x
                ────────
                     -2x + 2
                     -2x + 2
                     ────
                           0

Synthetic Division:

    1 |  1    0   -3    0    2
      |       1    1   -2   -2
      |______________________
        1    1   -2   -2    0

Result: x43x2+2=(x1)(x3+x22x2)x^4 - 3x^2 + 2 = (x-1)(x^3 + x^2 - 2x - 2) with remainder 00

WHY remainder = 0? This means x=1x = 1 is a root of x43x2+2x^4 - 3x^2 + 2! (Remainder Theorem)


Figure — Polynomial long division and synthetic division

[!mistake] Common Errors

Mistake 1: Forgetting to include 0 coefficients

Wrong approach: Divide x3+5x^3 + 5 by x2x - 2 using coefficients [1,5][1, 5]

Why it feels right: "Those terms aren't there, so skip them."

The fix: Always write x3+0x2+0x+5x^3 + 0x^2 + 0x + 5 → coefficients [1,0,0,5][1, 0, 0, 5] (one zero for the missing x2x^2 term, one for the missing xx term)

WHY? Place value matters! Just like writing 10051005 not 1515 when dividing numbers.

Mistake 2: Using wrong sign in synthetic division

Wrong: Dividing by x+3x + 3, student uses +3+3 in synthetic division

Why it feels right: "The divisor has +3+3, so I use +3+3."

The fix: x+3=x(3)x + 3 = x - (-3), so use c=3c = -3

WHY? Synthetic division uses the zero of the divisor. x+3=0x + 3 = 0 when x=3x = -3.

Mistake 3: Misaligning terms during long division

Wrong: After subtraction, writing remainder terms in wrong columns

Why it feels right: "I just write the numbers down as I get them."

The fix: Keep powers aligned vertically — x2x^2 terms under x2x^2 terms, etc.

WHY? Polynomial arithmetic requires combining like terms. Misalignment = adding x2x^2 to xx.

Mistake 4: Stopping too early

Wrong: Remainder is 3x+5-3x + 5 when dividing by x2+1x^2 + 1, but student continues dividing

Why it feels right: "There's still stuff left, so keep going."

The fix: Stop when deg(remainder)<deg(divisor)\deg(\text{remainder}) < \deg(\text{divisor})

WHY? A remainder of degree 1 cannot contain a divisor of degree 2. You're done!


[!recall]- Explain to a 12-year-old

Imagine you have 847 candies and want to divide them into groups of 23. You'd ask "How many 23s fit into 84?" (about 3), then multiply 3×23=693 \times 23 = 69, subtract 8469=1584 - 69 = 15, bring down the 7 to get 157, and keep going.

Polynomial division is exactly the same game, but instead of candies, you're dividing x3x^3 and x2x^2 terms. You ask "How many xxs fit into 2x32x^3?" (answer: 2x22x^2), then multiply and subtract just like with numbers.

Synthetic division is like a cheat code — when you're dividing by something simple like (x5)(x - 5), you can skip all the xx symbols and just work with the numbers, following a pattern of multiply-then-add. It's way faster but only works for those simple divisors!


[!mnemonic] Memory Aid

"DMSB" for Long Division: Divide, Multiply, Subtract, Bring down (repeat)

Synthetic Sign Rule: "Divisor (xc)(x - c) uses +c+c; divisor (x+c)(x + c) uses c-c" → "Flip the sign!"

Remainder Check: "If remainder degree \geq divisor degree, you're not done yet!"


Connections

  • 2.1.1-Polynomials-definition-and-degree — understanding polynomial structure
  • 2.1.13-Factor-theorem-and-remainder-theorem — remainder connects to P(c)P(c)
  • 2.15-Rational-root-theorem — finding candidates for cc in synthetic division
  • 2.1.8-Factoring-polynomials — division helps factor by finding quotients
  • 3.2.4-Partial-fraction-decomposition — uses polynomial division when numerator degree \geq denominator degree

#flashcards/maths

What is the relationship between dividend, divisor, quotient, and remainder in polynomial division? :: P(x)=D(x)Q(x)+R(x)P(x) = D(x) \cdot Q(x) + R(x) where deg(R)<deg(D)\deg(R) < \deg(D) or R=0R = 0

What is the first step in 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
Why must we include 0 coefficients for missing terms in polynomial division?
To maintain proper alignment of like terms (by degree) during subtraction, just like place values in number division
When can synthetic division be used?
Only when the divisor is a linear polynomial of the form (xc)(x - c) with leading coefficient 1
In synthetic division, if dividing by (x+5)(x + 5), what value do you use?
c=5c = -5 (use the zero of the divisor: x+5=0x=5x + 5 = 0 \Rightarrow x = -5)
What does it mean if the remainder is 0 when dividing P(x)P(x) by (xc)(x - c)?
(xc)(x - c) is a factor of P(x)P(x), and x=cx = c is a root of P(x)P(x) (by the Remainder Theorem)
When do you stop polynomial long division?
When the degree of the remainder is less than the degree of the divisor, or when remainder is 0
In synthetic division, what does the last number in the bottom row represent?
The remainder R(c)R(c), which equals P(c)P(c) by the Remainder Theorem
What are the quotient coefficients in synthetic division?
All bottom-row numbers except the last one; they represent a polynomial of degree one less than the dividend
If dividing 3x42x+13x^4 - 2x + 1 by x21x^2 - 1, what's the maximum possible degree of the remainder?
Degree 1 (must be less than divisor's degree of 2)

Concept Map

analogy for

method 1

method 2

works for

only for

repeats

until

produces

foundation for

enables

Number division 847/23

Polynomial division

Long division

Synthetic division

Any divisor

Linear divisor x - c

Divide-Multiply-Subtract-Bring down

Remainder degree less than divisor

P = D·Q + R

Remainder Theorem

Factoring and finding roots

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Polynomial division bilkul number division jaisa hai, bas thoda algebra mix ho jata hai. Jab ap 847 ko 23 se divide karte ho, toh pehle dekhte ho "84 mein kitne 23 fit hote hain?" Polynomial mein bhi same chez — "2x³ mein kitne x fit hote hain?" Answer hai 2x². Phir multiply karo, subtract karo, aur next term bring down karo. Ye DMSB pattern yad rakho: Divide, Multiply, Subtract, Bring down. Long division thodi slow hai but kisi bhi divisor ke liye kaam karti hai.

Synthetic division ek shortcut hai jab divisor simple ho — jaise (x-5) ya (x+3). Isme sirf coefficients ke sath khelna padta hai, koi x likhna nahi padta. Trick ye hai ki divisor (x-c) ho toh +c use karo synthetic mein. Agar (x+2) se divide kar rahe ho, toh c=-2 use karo kyunki x+2=0 matlab x=-2. Ek multiply-add pattern follow karo: pehla coefficient neeche lao, usko c se multiply karo (c se, divisor se nahi!), result ko next coefficient mein add karo, repeat karte jao. Last number jo ata hai woh remainder hai, baki sab quotient ke coefficients hain.

Ye technique bohot kaam ati hai — roots dhoondhne mein, polynomials factor karne mein, aur Remainder Theorem apply karne mein. Agar remainder zero ata hai matlab divisor ek factor hai! Practice karo dono methods, aur missing terms ke liye hamesha 0 coefficient rakhna yad rakho (jaise x³ + 5

Go deeper — visual, from zero

Test yourself — Algebra — Introduction & Intermediate

Connections