Technique explanation

Teaching Explanation

While a digit sum (mod-9) is an excellent tool for catching simple arithmetic errors, it has a blind spot: it cannot detect errors where digits have been swapped (e.g., writing 12 instead of 21). To address this, we use a second check called the alternating sum (mod-11). In this method, digits are alternately subtracted and added starting from the right. Because the order of digits matters in a mod-11 check, it can catch the "digit-swap" errors that mod-9 misses. By applying both checks, a learner creates a multi-layered filter that makes it highly unlikely for an error to go unnoticed.

Method Condition

Used for checking addition, subtraction, and multiplication.

Standard Fallback

Re-calculation or inverse operation.

Misconception: Believing that passing a check is a definitive proof of correctness.

Correction: Checks are probabilistic filters. While passing both makes an error very unlikely, it does not replace the need for careful calculation.

Worked examples
StepExample 1Example 2
1. Mod-9 Check$5 \times 2 = 10 \rightarrow 1$. Answer $1+5+4=10 \rightarrow 1$. Pass.$5 \times 3 = 15 \rightarrow 6$. Answer $2+7+6=15 \rightarrow 6$. Pass.
2. Mod-11 Check$(4-1) \times (1-1) = 3 \times 0 = 0$. Answer $4-5+1 = 0$. Pass.$(3-2) \times (2-1) = 1 \times 1 = 1$. Answer $6-7+2 = 1$. Pass.
3. ConclusionBoth checks match; result is highly likely correct.Both checks match; result is highly likely correct.
4. Verify$14 \times 11 = 154$.$23 \times 12 = 276$.