
How to Square Two-Digit Numbers Mentally
Squaring feels hard when every problem looks different. It gets simpler when you choose the method from the number shape.
These four methods cover most two-digit squares and give you a reliable fallback for the rest.
Method 1: Numbers Ending in 5
This is the easiest case. Take the tens digit, multiply by (tens digit + 1), and append 25.
| Number | Calculation | Result |
|---|---|---|
| 15² | 1 x 2 = 2, append 25 | 225 |
| 35² | 3 x 4 = 12, append 25 | 1,225 |
| 65² | 6 x 7 = 42, append 25 | 4,225 |
| 95² | 9 x 10 = 90, append 25 | 9,025 |
Why it works: (10a + 5)² = 100a(a+1) + 25. The algebra guarantees it.
Method 2: Numbers Near 50
For numbers close to 50, use this formula: add the distance from 50 to 25, then append the square of the distance.
Example: 53²
- Distance from 50: +3
- 25 + 3 = 28
- 3² = 09 (always two digits)
- Result: 2,809
Example: 47²
- Distance from 50: -3
- 25 - 3 = 22
- 3² = 09
- Result: 2,209
This works because 50² = 2,500, and the adjustment follows a clean algebraic pattern.
Method 3: Numbers Near 100
For numbers close to 100, find the distance from 100, add/subtract it from the number, then append the square of the distance.
Example: 97²
- Distance from 100: -3
- 97 - 3 = 94 (first two digits)
- 3² = 09 (last two digits)
- Result: 9,409
Example: 104²
- Distance from 100: +4
- 104 + 4 = 108
- 4² = 16
- Result: 10,816
Method 4: The General Anchor Method
For any number, pick a nearby "anchor" (a round number you can square easily), then adjust.
Formula: n² = anchor² + (n - anchor)(n + anchor)
This simplifies to: n² = anchor² + distance x (n + anchor)
Example: 37²
- Anchor: 40
- 40² = 1,600
- Distance: 37 - 40 = -3
- Adjustment: -3 x (37 + 40) = -3 x 77 = -231
- Result: 1,600 - 231 = 1,369
Actually, there's an even simpler version. Use the difference of squares:
n² = (n - d)(n + d) + d² where d = distance to the nearest round number.
Example: 37²
- d = 3 (distance to 40)
- (37 - 3)(37 + 3) = 34 x 40 = 1,360
- d² = 9
- Result: 1,360 + 9 = 1,369
This version is often easier because one of the factors is always a round number.
Practice Makes Permanent
Practice one method at a time. Start with endings in 5, then near-50 and near-100 numbers, then the general anchor method.
Use short sets: 10 examples, immediate review, then a second set only if the first move stayed clean.
In Math Gym, the Squares category moves from single digits to three-digit numbers so you can keep the same method while the numbers grow.