Skip to content
mathlab
0
0
0 XP
Lvl 1
KJ
Lesson 4 ~45 min Polynomials · Path +90 XP

Division and the Four Names

Long division looks like a new procedure. It is not: it is the algorithm you already ran on numbers, with powers of $x$ doing the job that hundreds, tens and units used to do. Learn the four names on a number first, and the polynomial version writes itself.

Today's hook: Divide $47$ by $5$ and you get $9$ remainder $2$. Nobody would call that a failure to divide, and nobody would write $\dfrac{47}{5}$ and stop. Polynomials behave exactly the same way, and the whole of the next four lessons rests on being comfortable with an answer that comes in two pieces.
0/5QUESTS
Think First
warm-up

You know that $47 = 5 \times 9 + 2$. Which of those four numbers could you change to $7$ and still have a sensible division statement, and which could not? Say why for the one that cannot.

Record your answer in your workbook.
1
The Big Idea
+5 XP to read

Every division, of numbers or of polynomials, produces the same four objects: the dividend being divided, the divisor doing the dividing, and the quotient and remainder that come out. Learn them here, on a number small enough to see all at once.

$$\text{dividend} = \text{divisor} \times \text{quotient} + \text{remainder}$$

The polynomial algorithm is the same four steps repeated: divide the leading terms, multiply back, subtract, bring down. You stop when what is left has a lower degree than the divisor, exactly as you stop dividing numbers when what is left is smaller than the divisor.

9 5 47 45 2 quotient dividend divisor remainder 47 = 5 × 9 + 2 dividend = divisor × quotient + remainder
$47 = 5 \times 9 + 2$
Leading terms only
At each step, divide the leading term of what remains by the leading term of the divisor. Ignore everything else.
Write the zeros in
A missing power needs a $0x^k$ placeholder, or the columns will drift.
Subtract, do not add
The step is a subtraction. Change the signs of the whole line before combining.
2
What You'll Master
objectives

Know

  • The four names in any division: dividend, divisor, quotient and remainder
  • That a division statement reads dividend $=$ divisor $\times$ quotient $+$ remainder
  • That polynomial long division stops when the remainder has lower degree than the divisor

Understand

  • Why the polynomial algorithm mirrors long division of whole numbers step for step
  • Why a missing power must be written in as a zero term

Can Do

  • Identify all four parts of a numerical or polynomial division
  • Divide a polynomial by a linear polynomial and state the quotient and remainder
  • Divide by a divisor of degree two, keeping the columns aligned
3
Words You Need
vocabulary
DividendThe polynomial or number being divided.
DivisorThe polynomial or number you are dividing by.
QuotientThe result of the division, before the remainder is accounted for.
RemainderWhat is left over. Its degree is always less than the divisor's.
PlaceholderA term such as $0x^2$ written in to keep the columns aligned.
Exact divisionDivision with remainder zero. The divisor is then a factor of the dividend.
4
The Four Names, on a Number
+5 XP to read

Divide $47$ by $5$. The answer is $9$ with $2$ left over, and every part of that sentence has a name.

$$\underbrace{47}_{\text{dividend}} = \underbrace{5}_{\text{divisor}} \times \underbrace{9}_{\text{quotient}} + \underbrace{2}_{\text{remainder}}$$

Two conditions make this the right answer rather than merely a true statement. The quotient must be a whole number, and the remainder must satisfy

$$0 \leq \text{remainder} < \text{divisor}$$

Without the second condition the statement is useless, because $47 = 5 \times 8 + 7$ is also true, and $47 = 5 \times 0 + 47$, and infinitely many others. The remainder being smaller than the divisor is what makes the answer unique.

Hold on to that, because the polynomial version replaces "smaller than" with "of lower degree than", and it does exactly the same job.

5
The Same Algorithm, with Powers of x
+5 XP to read

Long division of numbers works through place value: hundreds first, then tens, then units. Polynomial long division works through powers: $x^3$ first, then $x^2$, then $x$, then the constant. The four steps are identical.

Divide. Take the leading term of what is left and divide it by the leading term of the divisor. This gives one term of the quotient.

Multiply. Multiply the whole divisor by that new quotient term.

Subtract. Subtract that product from what you have.

Bring down. Bring down the next term and repeat.

Stop when what remains has a lower degree than the divisor, because at that point the first step is no longer possible: you cannot divide $x$ by $x^2$ and get a polynomial term.

Only the leading terms matter
At the divide step, look at nothing but the two leading terms. Dividing $2x^3$ by $x$ gives $2x^2$, whatever the rest of the divisor happens to be. The rest gets handled by the multiply-and-subtract step, which is what stops anything being lost.
6
Working an Example All the Way Through
+5 XP to read

Divide $2x^3 - 3x^2 + x - 5$ by $x - 2$.

Step 1. $2x^3 \div x = 2x^2$. Multiply: $2x^2(x-2) = 2x^3 - 4x^2$. Subtract:

$$(2x^3 - 3x^2) - (2x^3 - 4x^2) = x^2$$

Step 2. Bring down the $+x$. Now $x^2 \div x = x$. Multiply: $x(x-2) = x^2 - 2x$. Subtract:

$$(x^2 + x) - (x^2 - 2x) = 3x$$

Step 3. Bring down the $-5$. Now $3x \div x = 3$. Multiply: $3(x-2) = 3x - 6$. Subtract:

$$(3x - 5) - (3x - 6) = 1$$

Stop. What is left, $1$, has degree $0$, which is lower than the divisor's degree of $1$. So the quotient is $2x^2 + x + 3$ and the remainder is $1$:

$$2x^3 - 3x^2 + x - 5 = (x - 2)(2x^2 + x + 3) + 1$$

That last line is the check, and it is worth doing: expand the right side and you must recover the dividend exactly.

7
Missing Powers Need Placeholders
+5 XP to read

Divide $x^3 - 8$ by $x - 2$ and the first difficulty arrives immediately: there is no $x^2$ term and no $x$ term to bring down.

The fix is the one from Lesson 1. A missing term is a term with coefficient zero, so write it in:

$$x^3 - 8 = x^3 + 0x^2 + 0x - 8$$

Now the division proceeds normally. $x^3 \div x = x^2$; multiply to get $x^3 - 2x^2$; subtract to leave $2x^2$; bring down the $0x$; and so on. The answer is

$$x^3 - 8 = (x - 2)(x^2 + 2x + 4)$$

with remainder zero, which says $x - 2$ is a factor of $x^3 - 8$.

Skipping the placeholders is the most reliable way to get a wrong answer here. The columns are doing real work: they are the polynomial equivalent of place value, and a drifted column subtracts an $x^2$ term from an $x$ term without complaining.

8
Dividing by a Quadratic
+5 XP to read

Nothing about the algorithm assumes the divisor is linear. Divide $x^4 + 3x^2 - 2x + 1$ by $x^2 + 1$:

$x^4 \div x^2 = x^2$. Multiply: $x^2(x^2+1) = x^4 + x^2$. Subtract from $x^4 + 0x^3 + 3x^2$, giving $2x^2$, and bring down the rest.

$2x^2 \div x^2 = 2$. Multiply: $2(x^2+1) = 2x^2 + 2$. Subtract from $2x^2 - 2x + 1$:

$$(2x^2 - 2x + 1) - (2x^2 + 2) = -2x - 1$$

Stop, because $-2x - 1$ has degree $1$, lower than the divisor's degree $2$. So

$$x^4 + 3x^2 - 2x + 1 = (x^2+1)(x^2 + 2) + (-2x - 1)$$

The one change worth noticing: with a quadratic divisor the remainder may be linear, not just a number. The rule is always "lower degree than the divisor", so a divisor of degree $2$ permits a remainder of degree $1$ or $0$. Expecting a bare number here is a genuine trap.

9
Common Pitfalls
+5 XP to read
Omitting the placeholder for a missing power, so the columns drift.
Fix: rewrite the dividend with every power present before you start, using $0x^k$ where needed.
Adding instead of subtracting at the subtract step, or subtracting only the first term of the line.
Fix: change the sign of every term on the line being subtracted, then add. Writing the signs explicitly costs a second and saves the question.
Dividing the whole remaining polynomial by the whole divisor at the divide step.
Fix: the divide step uses only the two leading terms. The rest of the divisor is dealt with by multiplying back.
Stopping too early or too late, so that the remainder still has degree equal to the divisor's.
Fix: continue while the remaining degree is at least the divisor's degree; stop the moment it drops below.
Watch Me Solve It · Naming the parts
+15 XP per step
Q1
PROBLEM
In the division of $x^3 + 4x^2 - x + 6$ by $x + 5$, the quotient is $x^2 - x + 4$ and the remainder is $-14$. Identify each of the four parts by name and write the division statement.
  1. 1
    Name the two inputs
    The dividend is $x^3 + 4x^2 - x + 6$, the polynomial being divided. The divisor is $x + 5$, the one being divided by.
  2. 2
    Name the two outputs
    The quotient is $x^2 - x + 4$ and the remainder is $-14$.
  3. 3
    Write the statement in the standard form
    $x^3 + 4x^2 - x + 6 = (x+5)(x^2 - x + 4) - 14$
    Dividend equals divisor times quotient plus remainder.
  4. 4
    Check the degree condition
    The remainder $-14$ has degree $0$, which is less than the divisor's degree of $1$. So the division has been taken as far as it can go.
AnswerDividend $x^3 + 4x^2 - x + 6$, divisor $x+5$, quotient $x^2 - x + 4$, remainder $-14$
Watch Me Solve It · Dividing by a linear polynomial
+15 XP per step
Q2
PROBLEM
Divide $3x^3 + 2x^2 - 7x + 4$ by $x + 3$, stating the quotient and the remainder.
  1. 1
    First divide step
    $3x^3 \div x = 3x^2$
    $3x^2(x+3) = 3x^3 + 9x^2$
    $(3x^3 + 2x^2) - (3x^3 + 9x^2) = -7x^2$
    Leading terms only, then multiply back and subtract.
  2. 2
    Second divide step
    $-7x^2 \div x = -7x$
    $-7x(x+3) = -7x^2 - 21x$
    $(-7x^2 - 7x) - (-7x^2 - 21x) = 14x$
    Bring down the $-7x$ first. Subtracting a negative is where signs go wrong, so write the whole line out.
  3. 3
    Third divide step
    $14x \div x = 14$
    $14(x+3) = 14x + 42$
    $(14x + 4) - (14x + 42) = -38$
    Bring down the $+4$.
  4. 4
    Stop and check
    $3x^3 + 2x^2 - 7x + 4 = (x+3)(3x^2 - 7x + 14) - 38$
    The remainder $-38$ has degree $0 < 1$, so the division is complete. Expanding the right side recovers the dividend.
AnswerQuotient $3x^2 - 7x + 14$, remainder $-38$
Watch Me Solve It · Placeholders and an exact division
+15 XP per step
Q3
PROBLEM
Divide $x^4 - 16$ by $x^2 - 4$, stating the quotient and the remainder.
  1. 1
    Fill in every missing power first
    $x^4 + 0x^3 + 0x^2 + 0x - 16$
    Three placeholders are needed. Without them the columns cannot line up.
  2. 2
    First divide step
    $x^4 \div x^2 = x^2$
    $x^2(x^2 - 4) = x^4 - 4x^2$
    $(x^4 + 0x^2) - (x^4 - 4x^2) = 4x^2$
    There is no $x^3$ term to worry about because both the dividend's and the product's are zero.
  3. 3
    Second divide step
    $4x^2 \div x^2 = 4$
    $4(x^2 - 4) = 4x^2 - 16$
    $(4x^2 - 16) - (4x^2 - 16) = 0$
    Bring down the $0x$ and the $-16$ before this step.
  4. 4
    Interpret the zero remainder
    $x^4 - 16 = (x^2 - 4)(x^2 + 4)$
    A remainder of zero means the divisor is a factor. This is the difference of two squares, which confirms the answer independently.
AnswerQuotient $x^2 + 4$, remainder $0$
D
Brain Trainer · Divide and name
5 problems

Five items on the algorithm and the vocabulary. Work each one, then reveal the answer.

  1. 1 Write the division statement for $58$ divided by $7$.

    $7 \times 8 = 56$, leaving $2$.$58 = 7 \times 8 + 2$
  2. 2 Divide $x^2 + 5x + 6$ by $x + 2$.

    $x^2 \div x = x$; the division is exact.Quotient $x + 3$, remainder $0$
  3. 3 Divide $x^2 + 3x - 1$ by $x - 1$.

    Quotient $x + 4$, then $(4x - 1) - (4x - 4) = 3$.Quotient $x + 4$, remainder $3$
  4. 4 How should $x^3 + 1$ be written before dividing by $x + 1$?

    Every missing power needs a placeholder.$x^3 + 0x^2 + 0x + 1$
  5. 5 A cubic is divided by a quadratic. What are the possible degrees of the remainder?

    Lower than the divisor's degree of $2$.$1$ or $0$ (or the remainder is zero)
Complete in your workbook.
MC1
The names
+10 XP

In the statement $37 = 4 \times 9 + 1$, the number $4$ is the:

MC2
When to stop
+10 XP

When dividing a polynomial by $x^2 - 3$, you stop when the remaining polynomial has degree:

MC3
The divide step
+10 XP

Dividing $6x^4 - x + 2$ by $2x^2 + 5$, the first term of the quotient is:

MC4
Placeholders
+10 XP

Before dividing $x^4 - 3x + 7$ by $x - 1$, the dividend should be written as:

MC5
Reading a zero remainder
+10 XP

If dividing $P(x)$ by $x - 3$ leaves a remainder of $0$, then:

Q6
Divide and state
+15 XP
Q6
SHORT ANSWER
(a) Divide $2x^3 + 5x^2 - 4x - 3$ by $x + 3$, showing your working, and state the quotient and remainder.
(b) Write the full division statement.
(c) Verify your answer by expanding the right-hand side of that statement.
(d) State whether $x + 3$ is a factor of the dividend, with a reason.
Write your working in your book.
Q7
Placeholders and a quadratic divisor
+15 XP
Q7
SHORT ANSWER
(a) Divide $x^4 + 2x^2 - 5$ by $x^2 - 1$, showing your working.
(b) State the quotient and remainder, and check the remainder's degree against the divisor's.
(c) Explain why the dividend had to be rewritten before you began.
(d) Without dividing again, state the remainder when $x^4 + 2x^2 - 5$ is divided by $x^2 - 1$ if the constant term $-5$ is changed to $-2$.
Write your working in your book.
Q8
Working backwards
+15 XP
Q8
SHORT ANSWER
A polynomial $P(x)$ of degree $3$ is divided by $x - 4$. The quotient is $x^2 + x - 2$ and the remainder is $7$.
(a) Find $P(x)$ in expanded form.
(b) Find $P(4)$, and comment on how it relates to the remainder.
(c) Explain why the quotient had to have degree $2$.
(d) If instead the remainder had been $0$, what would you be able to say about $P(4)$ and about the factors of $P(x)$?
Write your working in your book.
S
Stretch Challenge · Why the answer is unique, and when it exists
+25 XP
S
CHALLENGE
(a) Show that $47 = 5 \times 8 + 7$ is a true statement, and explain precisely which condition it fails that stops it being "the" answer to $47 \div 5$.
(b) Suppose $P(x) = A(x)Q_1(x) + R_1(x)$ and also $P(x) = A(x)Q_2(x) + R_2(x)$, where both remainders have degree less than $\deg A$. Prove that $Q_1 = Q_2$ and $R_1 = R_2$.
(c) Explain what goes wrong if the divisor is the zero polynomial, and why the degree condition makes that case impossible to patch.
R
Quick Review
recap

Four names

Dividend, divisor, quotient, remainder

The statement

dividend $=$ divisor $\times$ quotient $+$ remainder

Four steps

Divide, multiply, subtract, bring down

When to stop

Remainder degree below the divisor's

Your Badges

0 of 6
First Steps
3-Day Streak
3 in a Row
Lesson Ace
Stretch Seeker
Daily Warrior

Mark lesson as complete

Tick when you've finished Learn, Practice and the Stretch. Earns +90 XP and +25 coins.