Teaching Explanation
When dividing by a number close to a base like 10 or 100, we can use the "distance" from the base to simplify the work. For example, dividing by 9 is similar to dividing by 10, but we have a "deficiency" of 1. In this method, we use the complement of the divisor to help us calculate the remainder. If we divide 123 by 9, we note that 9 is 1 away from 10. We separate the last digit (the remainder column) and bring down the first digit as part of our quotient. We then multiply that digit by the complement and add it to the next column. This process continues until we reach the remainder. It is vital to check if the final remainder is smaller than the divisor; if not, we must "adjust" the quotient as learned in the previous lesson.
Method Conditions and Fallback
| Condition | Method | Standard Fallback |
|---|---|---|
| Divisor is slightly below a base (e.g., 8, 9, 97, 98) | Use the "transposed complement" method to find quotient and remainder. | Use standard long division or short division. |
| Divisor is not near a base (e.g., 47, 63) | Do not use the base method. | Use the standard division algorithm. |
Common Misconceptions
Misconception: The base method always gives the final answer directly.
Correction: The base method sometimes produces a remainder that is equal to or greater than the divisor (e.g., $18 \div 9$ might initially look like 1 remainder 9). You must always apply the "Remainder Bound" rule from Lesson 23 to adjust the final quotient and remainder.
Worked Examples and Verification
| Example Type | Problem | Step-by-Step Solution | Independent Check |
|---|---|---|---|
| Below Base (10) | 23 \div 9 | 1. Base=10, Complement=1. 2. Split: 2 \mid 3. 3. Drop 2: Quotient is 2. 4. Multiply/Add: 2 \times 1 = 2; 3+2=5. 5. Result: 2 remainder 5. | (9 \times 2) + 5 = 18 + 5 = 23. Correct. |
| Below Base (100) | 111 \div 98 | 1. Base=100, Complement=02. 2. Split: 1 \mid 11. 3. Drop 1: Quotient is 1. 4. Multiply/Add: 1 \times 02 = 02; 11+02=13. 5. Result: 1 remainder 13. | (98 \times 1) + 13 = 98 + 13 = 111. Correct. |