Worked examples — Division — long division, remainder, dividend - divisor - quotient vocabulary
The scenario matrix
Before working anything, let us name every distinct shape a division problem can take. Each row is a "cell" — a genuinely different situation. If we cover all cells, no exam question is a stranger.
| # | Cell (case class) | What makes it different | Example we use |
|---|---|---|---|
| A | Clean divide, remainder | Nothing left over; divisor divides dividend | (revisited deeper) |
| B | Leftover at every column | A non-zero remainder marches through each step | |
| C | Placeholder zero inside the quotient | Running number smaller than divisor mid-way → must write | |
| D | Divisor bigger than the leading digit(s) | Quotient "starts late" | |
| E | Divisor bigger than the WHOLE dividend | Quotient is , dividend is its own remainder | |
| F | Dividing zero | shared into groups → everything zero | |
| G | Divide by / by the number itself | Degenerate divisors — sanity anchors | , |
| H | Two-digit divisor (exam twist) | Estimation matters more; DMSB unchanged | |
| I | Real-world word problem | You must decide what quotient and remainder mean | Buses & passengers |
We will hit A–I, in that order. Watch the running condition hold in every single one — that is the thread tying them together.
Cell A — Clean divide (remainder )
Cell B — Leftover marching through every column
Cell C — The placeholder zero (the trap)
Cell D — Divisor bigger than the leading digit
Forecast: , so quotient is around . Note it will be two digits, not three, even though the dividend has three digits.
Step 1 — Hundreds. ? Seven can't fit in . So there are zero hundred-groups; we don't write a leading (leading zeros are dropped), we simply look at instead. Why this step? The very first quotient digit is only written once we have enough to make a group. hundreds isn't enough, so the quotient starts at the tens place.
Step 2 — Look at (tens). exactly, subtract . Why? , a perfect fit.
Step 3 — Ones. Bring down : running number . , write , leftover . Why? so no group forms — but this is inside the quotient (a real digit), not a dropped leading zero.
Answer: quotient , remainder . Verify: ✓.
Cell E — Divisor bigger than the WHOLE dividend
Forecast: You have sweets to share among kids. Nobody can get a whole sweet. So quotient and everything stays as remainder.
Step 1 — Ask "how many s fit in ?" Zero. , subtract . Why this step? The division algorithm still applies: we need the largest quotient with . That is .
Answer: quotient , remainder . Verify: ✓, and ✓.
" with remainder " is exactly the fraction — the leftover is the numerator, the divisor the denominator. See Fractions as Division.
Cell F — Dividing zero
Forecast: Zero marbles into boxes. Each box gets nothing, nothing is left.
Step 1 — "How many s fit in ?" Zero. , subtract . Why this step? is a perfectly legal dividend; the algorithm hands back , .
Answer: quotient , remainder . Verify: ✓.
Careful — this is , dividing zero by four, which is fine. Dividing by zero () is the forbidden one, because no quotient ever makes . Zero as the dividend is safe; zero as the divisor is undefined.
Cell G — Degenerate divisors ( and the number itself)
and Forecast: Sharing among box → that box gets all . Sharing among boxes → each gets .
Case : "how many s fit in ?" Exactly . , remainder . Why? Dividing by never breaks anything up — every number divided by is itself.
Case : "how many s fit in ?" Exactly . Remainder . Why? Any non-zero number divides itself once, cleanly.
Verify: ✓ and ✓. These two are your sanity anchors — if a method ever gives , the method is broken.
Cell H — Two-digit divisor (the exam twist)
Forecast: Estimation now does real work. , and . So quotient is near –? Refine: , leaving ; ; so ~ with a small remainder. Let's confirm.
The same DMSB loop from the parent note (Divide, Multiply, Subtract, Bring down) runs — only the "Divide" sub-step needs a guess-and-check because isn't a single digit. The red boxes in the figure mark where we estimate.
Step 1 — Take the first two digits, . How many s in ? Estimate . Check: , and . So digit . Subtract . Why estimate? With a two-digit divisor you can't just "know" the digit; you round (, ) and verify it fits.
Step 2 — Bring down : running number . How many s in ? None. Write , leftover . Why? , so this quotient digit is a genuine placeholder (Cell C behaviour reappearing).
Step 3 — Bring down : running number . Estimate : , . Digit . Subtract . Why? Round : , try — too big — step back to . This "guess, over-shoot, step back" is normal for multi-digit divisors.
Answer: quotient , remainder . Verify: ✓, and ✓. Forecast (~) landed exactly.
Cell I — Real-world word problem (deciding what the remainder means)
students. Each bus seats . How many buses are needed? Forecast: , so about buses — but students are still standing. Do we round up or drop them? Think before dividing.
Step 1 — Divide. : how many s in ? , . Quotient , remainder . Why? Standard division: full buses carry students.
Step 2 — Interpret the remainder. students remain with no seat. You cannot leave them behind, so you need one more bus. Why this step? The maths gives , — but the word problem asks "how many buses," and a partial group of students still needs a whole bus. So the answer is buses.
Answer: buses (the last carries only students). Verify: buses seats, plus bus for the last capacity ✓; with buses only ✗. So is genuinely the minimum.
decision, not just a number The same answers three different questions three ways:
- "How many full buses?" → (ignore remainder).
- "How many buses needed?" → (round up).
- "How many students standing if only buses come?" → (the remainder itself). Always re-read what the words are asking.
Recall checkpoint
Recall Which cell is each of these?
— which trap does it teach? ::: Cell C — the placeholder zero (skip it and you get ). Why is quotient remainder ? ::: Cell E — divisor exceeds dividend, so no whole group fits; the whole dividend is the remainder. Is the same trap as ? ::: No — is fine; is undefined (nothing times gives ). In the bus problem, why answer not ? ::: The remainder students still need a bus, so round the quotient up. What single check verifies every example above? ::: , with .
Connections
- Parent: Division & vocabulary
- Fractions as Division (Cell E: a leftover becomes a fraction)
- Modular Arithmetic & Remainders (the remainder, studied on its own)
- Factors, Multiples & Divisibility Rules (remainder divides exactly)
- Multiplication — repeated addition (the verify step is multiplication)