Casting out nines
Any number can be reduced to a single digit: add its digits and repeat until one digit is left. 47 gives 4 + 7 = 11 and then 1 + 1 = 2.
The whole point of the check is that this reduction survives multiplication and addition. If the operation holds for the numbers, it must hold for their reduced forms:
47 × 23 = 1081 → 2 × 5 = 10 → 1, and 1081 → 1. It matches.
If those two do not match, the answer definitely has a mistake in it. The check itself is easy, because all of the work is done on single digits.
An honest warning. The check finds mistakes but does not prove correctness. A wrong answer can happen to have the same reduced form, and one case is especially common: transposed digits. Both 1081 and 1801 reduce to one, so this check cannot see that mistake.
That is exactly why it pairs with estimating the size. The estimate shows whether the answer is in the right place, and casting out nines catches many of the smaller errors that leave the size unchanged.
The same digit sum appears in the divisibility rules, where it tests divisibility by nine.
Practise
The exercise gives a finished operation and asks for four reductions: both factors, the product of the two reduced digits, and the answer. The last two must come out the same, and that is the whole check.
Mental arithmetic techniques
Addition and subtraction
Multiplication
- Multiplying by eightThree doublings in a row, and you get the twos and the fours for free along the way.
- Squares as anchorsLearn the nine squares by heart and use them to reach the neighbouring products. The hardest corner of the times table sits right next to the squares.
- Multiplying by nineReally just multiplying by ten and subtracting once.
- Multiplying in partsSplit the bigger factor into its tens and its units, multiply each separately, then add.
- Multiplying two-digit numbersSplit one factor and multiply the other factor by each part. Nothing new here, just one layer more.
- Rounding in multiplicationMultiply by the nearby round number and correct afterwards. The correction is the gap times the other factor.
- Halving and doublingMultiplying by five is multiplying by ten and halving. Halving one factor while doubling the other leaves the product unchanged.
- Multiplying by elevenPull the digits apart and put their sum in the middle. When the sum goes past nine, carry one to the left-hand digit.
- Squaring any two-digit numberChoose the nearest multiple of ten. Move one factor to it and the other the same distance in the opposite direction, multiply the new factors, and add the square of the shift.
- Difference of squaresWhen two factors sit the same distance from a round number, square the number between them and subtract the square of the distance.
- Squaring numbers ending in fiveDrop the final five, multiply what is left by the next number up, and put 25 on the end. 35 squared is 3 × 4 and 25, which is 1225.
Division
Checking
Mental arithmetic