4.) Division by Successive Approximations

The long division algorithm is reliable, but it’s designed for paper, not for your head.

Instead of writing digits one at a time, it helps to understand what the algorithm is actually doing.

At its core, division is about finding a close multiple, then correcting the error.

Rather than avoiding overshooting, we can allow it and then adjust. This makes the process more flexible and often more intuitive.

Example:

120 ÷ 11

Start with a close estimate:

  • 11 × 11 = 121 (slightly too big)

So:

120 ÷ 11 = 11 − 1/11

Now refine the fraction.

To approximate 1/11, relate it to something easier:

  • 1/11 ≈ 9/100 (since 100 ÷ 11 = 9 remainder 1)

So:

1/11 ≈ 0.09 + 1/1100

Substitute back:

120 ÷ 11 ≈ 11 − (0.09 + 1/1100) = 10.91 − 1/1100

This is already a very close approximation.

Another example:

250 ÷ 9

Start with a nearby multiple:

  • 9 × 28 = 252 (slightly too big)

So:

250 ÷ 9 = 28 − 2/9

Now approximate:

  • 1/9 ≈ 0.111...
  • 2/9 ≈ 0.222...

So:

250 ÷ 9 ≈ 28 − 0.22 = 27.78 (approx)

This is the same process as long division—but expressed differently:

  1. Make a good estimate
  2. Measure the error
  3. Correct it
  4. Repeat if needed
  • You’re not locked into rigid steps
  • You can overshoot and adjust, instead of being forced to stay under
  • You gain intuition about what division means, not just how to perform it

Long division builds the answer digit by digit.

This method builds it correction by correction.

And that opens the door to shortcuts—because sometimes the correction is small enough that you can stop early.

Division doesn’t have to be a strict procedure. It can be a flexible process of estimating, measuring error, and refining your answer.

Back to main article