2.1.14 · D2Algebra — Introduction & Intermediate

Visual walkthrough — Polynomial long division and synthetic division

1,787 words8 min readBack to topic

This page builds the synthetic division shortcut from absolute zero. We will not memorise the "bring down, multiply, add" ritual — we will watch it grow out of ordinary long division, one squeeze at a time, until every symbol has earned its place.

Prerequisites we lean on: what a polynomial and its degree are and the master identity from the parent, the topic note. If a word feels new, we define it here before we use it.

Our running example (the same one the parent solves) is:


Step 1 — Line up the coefficients like place values

WHAT. Write using only its numbers (coefficients), in descending powers of , with a wherever a power is missing.

  • The lives at power 3 — it is the "thousands column".
  • The lives at power 0 — the "ones column".

WHY. In the number , the means only because of its column. Coefficients are identical: the same number means different things depending on its power. Dropping a missing term (like a stray ) is exactly the crime of writing when you meant — the columns shift and every later step lands in the wrong place. We keep the columns rigid so the machine never mis-reads a power.

PICTURE. Each coefficient sits in its own labelled column, one per power.


Step 2 — Do the first long-division step out loud

WHAT. Long division always asks one question: how many times does the leading term of the divisor go into the leading term of the current dividend?

WHY this operation and not another? We want to destroy the highest power one step at a time. The only way to cancel a by subtracting a multiple of is to multiply by something whose lead is . Division of the lead terms finds that something. That is the entire job of the fraction here: it answers "what quotient term kills the current top?"

Now multiply the whole divisor by that term and subtract:

  • The cancels exactly — that was the point.
  • The new top term is : the divisor's tail () leaked into the next column.

PICTURE. Watch the leading vanish and a fresh appear.


Step 3 — Spot the wasted work

WHAT. Look hard at what actually changed in Step 2. We wrote , but the was guaranteed to cancel — it was born to cancel. The only number that mattered was the that hit the next column.

WHY. Half the long-division writing is redundant: the lead term always self-destructs, so copying it out is pointless. If we could agree to never write the doomed lead term again, we'd only ever track two numbers per step: the quotient digit, and the product it pushes into the next column.

PICTURE. The greyed-out is the wasted ink; the yellow is the only thing that moved.


Step 4 — Flip a subtraction into an addition

WHAT. In Step 2 we subtracted . Subtracting is error-prone (sign slips are Mistake 2 in the parent). Watch what happens if we instead subtract by adding .

Our divisor is , so define

Then the product that lands in the next column is and we add:

  • We got the same (i.e. ) as Step 2 — but with no subtraction.
  • The sign flip from to is the "subtract"; we absorbed it into .

WHY and not the divisor's ? Because subtracting and adding produce the identical column change, but addition never trips a sign. This is precisely why synthetic division uses the root , not the visible constant. (Parent Mistake 2: , never .)

PICTURE. The subtraction lane and the addition lane give the same result; we keep the addition lane.


Step 5 — Roll the whole division into one strip of numbers

WHAT. Repeat the two-number step (multiply by , add the column) across every coefficient. No 's, no leading terms, no subtraction — just:

With and coefficients :

Tracing each cell so no symbol is unexplained:

  • Bring down — the first quotient coefficient is always the dividend's lead (nothing above it to cancel).
  • , then .
  • , then .
  • , then .

Reading the bottom row: the last entry is the remainder . The others are the quotient, one degree lower than (because dividing by degree-1 drops the degree by one):

WHY it matches long division exactly. Every bottom-row number is a column-subtraction from long division with the doomed lead term removed and the subtraction re-cast as . Same arithmetic, less ink.

PICTURE. The full strip, arrows showing multiply-by- diagonals and add-down columns.


Step 6 — The zero-remainder case (why this reveals roots)

WHAT. Try . Here , and the missing and terms force zeros: coefficients .

  • The two s hold the empty columns open — omit them and every later cell shifts wrong (Mistake 1).
  • Bottom row: , .

WHY the zero matters. By the identity , a remainder of means . So is a root — the Remainder & Factor Theorems fall straight out of the last cell. This is why synthetic division is the engine behind the Rational Root Theorem and factoring polynomials.

PICTURE. Same strip; the boxed final glows to signal "root found — divisor is a factor".


Step 7 — The degenerate cases: when synthetic division refuses

WHAT. Two boundary situations you must recognise.

  1. Divisor not of the form (e.g. dividing by or ). The single-number-per-column trick assumes the divisor's lead is and its degree is . If the lead is , first factor it out: , divide by , then divide the quotient by . If the degree is , synthetic division does not apply — use long division, and stop as soon as (parent Mistake 4).

  2. Dividend degree divisor degree (e.g. is fine, but ). If , no term of fits into : the quotient is and the whole dividend is the remainder. The strip degenerates to bringing down and adding once.

WHY. The algorithm's promise — or — is what tells us when to stop and when we're not allowed to start. Respecting it is the difference between a correct answer and Mistakes 1 & 4.

PICTURE. A decision panel: is the divisor ? is ? Only the green path runs the strip.

no

yes

no

yes

Divisor is x minus c ?

Use long division

Degree of P at least degree of D ?

Quotient is zero, remainder is P

Run the strip: bring down, times c, add

Last cell is remainder

If remainder zero then c is a root


The one-picture summary

Every idea on this page, compressed: long division's redundant lead term is deleted, its subtraction is re-cast as "add ", and what survives is a single strip of multiply-diagonals and add-columns whose final cell is the remainder.

Recall Feynman retelling — say it in plain words

Long division of polynomials wastes effort: every time you divide, the top term is designed to cancel, so writing it out again is pointless. Throw it away. What's left to track is just one number per column. Then notice that "subtract the divisor" secretly equals "add ", where is the value that makes zero — so we replace every subtraction with an addition and never slip a sign. Slide those two moves across the row of coefficients: bring the first one down, multiply by and drop it into the next column, add, repeat. The numbers that fall out the bottom are the answer (the quotient), and the very last one is what's left over (the remainder). If that last number is , then divides in cleanly — is a root — which is exactly how we hunt for factors. Just keep the empty powers marked with , and don't try this when the divisor is anything fancier than .


Related next step: once you can force remainders to zero, splitting a fraction becomes easy — see partial fractions.