|
Long division is a way of finding out how many times one number "goes into" another. The first number is called the divisor and the second is called the dividend. We divide to find out how many times a divisor "goes into" a dividend, that is, how many times you have to add that divisor to 0 to get the dividend. The result is the quotient, the number of times. You could guess how much, then check, but this would be slow and clumsy. The algorithm does it with a lot less guessing. |
|
|
Step 1: compare the divisor, 3 with the first digit of the quotient, 5. If it is less, 3 will go into 5 at least once. In fact we guess 1. |
|
||
|
Step 2: Multiply our guess by the divisor. Put the product under what we just divided into. |
![]() |
||
|
Step 3: Subtract from the digit(s) we just divided into |
![]() |
||
|
Step 4: Check the remainder is less than the divisor |
![]() |
||
|
Step 5: Bring down another digit and do it again from step 1 |
![]() |
||
|
Step 1: guess how many times the divisor goes into the new digits. Put the guess above the digit we just brought down |
![]() ![]() |
||
|
Step 2: Multiply our guess by the divisor |
![]() |
||
|
Step 3: Subtract |
![]() |
||
|
Step 4: Check smaller than divisor |
![]() |
||
|
Step 5: Bring down the next digit |
![]() |
||
|
Step 1: Make a guess |
![]() |
||
|
Step 2: Multiply |
![]() |
||
|
Step 3: Subtract |
![]() |
||
|
Step 4: check remainder is smaller than
divisor. Clearly, 0 is. |
This is a simple example. Try a 2 digit divisor. |
What if your guess is too low?
What if your guess is too high?