Q1.
Look at the following procedure — 1. Place alternating ‘+’ and ‘–’ signs before every digit starting from the unit’s digit. 2. Evaluate the expression. 3. The result denotes the remainder obtained when the number is divided by 11. Is this method similar to or different from the method we saw just before?
Answer
It is the same method, written more compactly.
| Earlier method (320185) | Alternating-sign method |
|---|---|
| excess = 2 + 1 + 5 = 8 (places 1, 100, 10000) | these digits get '+' |
| short = 3 + 0 + 8 = 11 (places 10, 1000, 100000) | these digits get '–' |
| 8 – 11 = – 3 | – 3 + 2 – 8 + 1 – 0 + 5 = – 3 |
Why they agree: writing (excess) – (short) means adding some digits and subtracting the others. Which digits get which sign is decided by the place value — and place values alternate between 1 more and 1 less than a multiple of 11. So attaching alternating signs from the units place is the excess-minus-short calculation, just written in one line.
Tip: the compact version is faster and less error-prone, but the first version is the one that explains why. Both give – 3 for 320185: 3 short of, or 8 more than, a multiple of 11.