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

Division

Checking

Mental arithmetic