Speed Squaring: A Shortcut for Numbers Close to a Round Base
7 September 2026
Squaring Without Multiplying Digit by Digit
Squaring a number that's close to a round base (10, 100, 1000...) can be done almost as fast as writing the number itself, using the same deviation idea behind near-base multiplication — applied to a number multiplied by itself.
The Method
- Find the deviation of the number from a nearby base.
- Add the deviation to the number itself, then multiply by the base.
- Add the square of the deviation.
Worked Example: Below the Base
97² (base 100)
- Deviation: 97 − 100 = −3
- Add deviation to the number, multiply by base: (97 − 3) × 100 = 94 × 100 = 9400
- Add the square of the deviation: (−3)² = 9
- Answer: 9400 + 9 = 9409
Worked Example: Above the Base
103² (base 100)
- Deviation: +3
- (103 + 3) × 100 = 106 × 100 = 10600
- Square of deviation: 3² = 9
- Answer: 10600 + 9 = 10609
Worked Example: Small Base
12² (base 10)
- Deviation: +2
- (12 + 2) × 10 = 140
- Square of deviation: 2² = 4
- Answer: 140 + 4 = 144
9² (base 10)
- Deviation: −1
- (9 − 1) × 10 = 80
- Square of deviation: (−1)² = 1
- Answer: 80 + 1 = 81
Why It's Faster Than Multiplying Long-Hand
Normally, squaring a two- or three-digit number means multiplying every digit by every digit. This method replaces that with one addition, one multiplication by a round base (basically shifting digits), and one small square of the deviation — which is almost always a single-digit or small two-digit number.
Choosing the Right Base
Always pick the base that gives the smallest possible deviation — the smaller the deviation, the smaller and easier the extra squaring step becomes. For 97 and 103, base 100 is the obvious choice; for 12 and 9, base 10 works best.
Practice Tip
Square every number from 90 to 110 using base 100, and every number from 1 to 20 using base 10. The deviations involved are always small, which makes this one of the fastest mental squaring methods to build genuine speed with — most students can square a two-digit number in under five seconds once the pattern clicks.