Question
How do you square any number ending in 5?
Answer
Multiply the digits before the 5 by the next whole number up, then stick "25" on the end.
For a number n5: compute n × (n + 1), then append 25.
- 25² → 2 × 3 = 6 → 625.
- 35² → 3 × 4 = 12 → 1225.
- 85² → 8 × 9 = 72 → 7225.
- 115² → 11 × 12 = 132 → 13225.
This is the Vedic Ekadhikena Purvena ("by one more than the one before") sutra. It works because (10n+5)² = 100·n(n+1) + 25.
Note saved — thanks!
Question
How do you square a number near 50, e.g. 47²?
Answer
Start from 25; add the amount above 50 (or subtract the amount below) for the first part, then tack on the square of that deviation as the last two digits.
Write the number as 50 ± d. The result is (25 ± d) followed by d² (two digits):
- 47² (d = −3) → 25 − 3 = 22, and (−3)² = 09 → 2209.
- 53² (d = +3) → 25 + 3 = 28, and 3² = 09 → 2809.
- 58² (d = +8) → 25 + 8 = 33, and 8² = 64 → 3364.
Check: 47² = 2209 ✓. It comes from (50 ± d)² = 2500 ± 100d + d².
Pitfall: the d² slot holds two digits — if d² ≥ 100, carry the extra hundreds into the first part.
Note saved — thanks!