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.
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.
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.
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
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.
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.
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.
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.
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.
Watch Me Solve It · 3 examples
-
1Name the two inputsThe dividend is $x^3 + 4x^2 - x + 6$, the polynomial being divided. The divisor is $x + 5$, the one being divided by.
-
2Name the two outputsThe quotient is $x^2 - x + 4$ and the remainder is $-14$.
-
3Write 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.
-
4Check the degree conditionThe 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.
-
1First 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.
-
2Second 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.
-
3Third divide step$14x \div x = 14$$14(x+3) = 14x + 42$$(14x + 4) - (14x + 42) = -38$Bring down the $+4$.
-
4Stop 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.
-
1Fill in every missing power first$x^4 + 0x^3 + 0x^2 + 0x - 16$Three placeholders are needed. Without them the columns cannot line up.
-
2First 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.
-
3Second 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.
-
4Interpret 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.
Brain Trainer · 5 problems
Five items on the algorithm and the vocabulary. Work each one, then reveal the answer.
-
1 Write the division statement for $58$ divided by $7$.
$7 \times 8 = 56$, leaving $2$.$58 = 7 \times 8 + 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 Divide $x^2 + 3x - 1$ by $x - 1$.
Quotient $x + 4$, then $(4x - 1) - (4x - 4) = 3$.Quotient $x + 4$, remainder $3$ -
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 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)
Multiple Choice · 5 questions
In the statement $37 = 4 \times 9 + 1$, the number $4$ is the:
When dividing a polynomial by $x^2 - 3$, you stop when the remaining polynomial has degree:
Dividing $6x^4 - x + 2$ by $2x^2 + 5$, the first term of the quotient is:
Before dividing $x^4 - 3x + 7$ by $x - 1$, the dividend should be written as:
If dividing $P(x)$ by $x - 3$ leaves a remainder of $0$, then:
Short Answer · 3 questions
(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.
(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$.
(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)$?
(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.
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 6Mark lesson as complete
Tick when you've finished Learn, Practice and the Stretch. Earns +90 XP and +25 coins.