s1.5.1
Subtracting Reverses
1,000 questions
This trick applies when subtracting two numbers whose digits are reverses of each other (e.g., 715 - 517). For a three-digit number, the shortcut is:
Result = 99 * (first digit - last digit)
A simpler way to calculate this is:
- Take the difference between the most significant and least significant digits.
- Multiply this difference by 100.
- Subtract the original difference from the result.
For example, : The difference is . So, . For four-digit numbers with zeroed middle digits (e.g., 6002 - 2006), multiply the difference by 1000 instead.