When we divide, we are trying to find out how many times the divisor (e.g. 21) goes into the dividend (e.g. 1543).
We could just repeatedly subtract, keeping a tally of the number of times we have subtracted, stopping when further subtraction would give a negative result. At least, that is how we could do divmod division.
Keeping such a tally would be tedious, however. It is better to subtract large but convenient multiples of the divisor, than smaller multiples, keeping tally of these separately as we go.
In our usual decimal system of numeration, powers of ten are particularly convenient multipliers.
In 1543, the highest nonzero column is the thousands column. We can therefore try subtracting thousands of s. We could not subtract thousand even once from thousand and anything without the result being negative. So we need thousands of s, and we still have thousand and something.
Next, we try hundreds of s. Again, we cannot subtract even hundreds even once from hundred and something, without the result being negative. So we need hundreds of s, and we still have hundred and something.
Next, we try tens of s. We can subtract tens from tens and something. Indeed, we can subtract times, a total of tens, without getting negative result. So now we have that tens and is the same as lots of tens, and then tens and .
Next we try whole s. We can subtract from just times without going negative. This subtracts a total of from , leaving .
So now we have that is the same as lots of tens, and lots of ones, and a further .
This can instead be understood as lots of , and lots of , and more. This in turn is and . i.e.
If we are doing divmod division, we can stop :
But if, instead of a remainder, we want the quotient to have a fractional part expressed as a decimal, then we keep going.
We have that still needs to be divided by . So now we try subtracting tenths of . is tenths. We can subtract lots of tenths of , i.e. tenths, from tenths, leaving tenths.
Next, we try subtracting hundredths of from hundredths. hundredths of is hundredths, which when subtracted from hundredths leaves hundredths.
Stopping at this point, we find that
,
which we can write
.
The preceding discussion has been rather lengthy--such work is usually set out in a much more compressed format. Unfortunately, long division seems to have been taught procedurally without adequate preparation, so that the elided computational form entrains elided thinking. Even among the few in these calculator-infested days who can still actually do long division, a substantial fraction can give no convincing account of why the standard long division algorithm works.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment