๐Ÿ 
Guest Not signed in

Spot the Error

Each equation is either right or has a slip. Use casting out nines to catch the fakes โ€” fast, without recomputing.

Time: 90.0s Right: 0 ยท Wrong: 0

The trick. Every number equals its digit-sum, reduced to one digit (mod 9): 47 โ†’ 4+7=11 โ†’ 2. For a real product the digit-roots must line up:

47 ร— 53 = 2491?   root(47)=2, root(53)=8,   2ร—8=16โ†’7.   root(2491)=7.   Match โ†’ could be right.

47 ร— 53 = 2490?   expected root 7, but root(2490)=6.   Mismatch โ†’ definitely wrong.

If the roots don't match, the answer is wrong โ€” guaranteed. Tap โœ“ Looks right or โœ— Wrong; the working is shown after each. 90 seconds.