Now that we have taken long division apart, in the last posting, and made a multiplication table for the divisor , in the posting before that, we are ready to look at the standard long division algorithm, with Jakow Trachtenberg's trick.
We are dividing by , using the multiplication table
.
Start by writing
From the table, see that no whole s go into or into , but that whole s, but not , go into :
Subtract from leaving .
From the table, again, whole s, i.e. , go into , leaving .
This is the stopping point for divmod division, so that
For decimal division, one continues s into go times, i.e. leaving .
This continues until one has reached the desired degree of accuracy.
Thursday, February 25, 2010
Long division taken apart
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.
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.
Building ad hoc multiplication tables
Proportion tables are sometimes useful for doing long division.
For many people, the most difficult part of that standard long division algorithm is estimating which multiple of the divisor to subtract. Jakow Trachtenberg taught a simple trick for avoiding this difficulty.
In the next posting, we are going to divide 1543 by 21, using the standard long division algorithm and Trachtenberg's trick.
The first step is to invest some time making a table of multiples of , up to the . The and rows are obvious :
.
The row can be found by doubling the second row :
.
The row can be found by adding the row and the row :
.
The row can be found either by adding the row to the row, or else by doubling the row. One picks whichever is more convenient :
.
The row can be found either by adding the row and the row, or else by adding the row and the row. Again, one picks whichever is more convenient :
.
One continues in this way, constructing the next row opportunistically, until at last one has :
.
This can be checked by casting out nines, if one knows how to do that. (If not, it needs to be the subject of yet another post.)
Now we are ready divide anything by .
.
This checks out, so we can rely on the table we have made.
For many people, the most difficult part of that standard long division algorithm is estimating which multiple of the divisor to subtract. Jakow Trachtenberg taught a simple trick for avoiding this difficulty.
In the next posting, we are going to divide 1543 by 21, using the standard long division algorithm and Trachtenberg's trick.
The first step is to invest some time making a table of multiples of , up to the . The and rows are obvious :
.
The row can be found by doubling the second row :
.
The row can be found by adding the row and the row :
.
The row can be found either by adding the row to the row, or else by doubling the row. One picks whichever is more convenient :
.
The row can be found either by adding the row and the row, or else by adding the row and the row. Again, one picks whichever is more convenient :
.
One continues in this way, constructing the next row opportunistically, until at last one has :
.
This can be checked by casting out nines, if one knows how to do that. (If not, it needs to be the subject of yet another post.)
Now we are ready divide anything by .
.
This checks out, so we can rely on the table we have made.
Subscribe to:
Posts (Atom)