Square roots are everywhere — Pythagorean theorem, distance formulas, standard deviation, quadratic equations. A calculator handles them in a keystroke, but every now and then you need one without electronic help: a no-calculator math section, a power outage, a job interview brainteaser, or just curiosity. Here are three reliable hand methods.

Method 1: estimation by bracketing

The fastest mental method. To find √n:

  1. List perfect squares near n: 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225.
  2. Find the two perfect squares that bracket n.
  3. The square root lies between their roots.
  4. Estimate within that gap using proportional reasoning.

Example: √50. The bracketing squares are 49 (= 7²) and 64 (= 8²). So √50 is between 7 and 8, very close to 7. Refine: 50 is 1 above 49, and the gap from 49 to 64 is 15, so 1/15 ≈ 0.067 of the way. Estimate: 7.067. The exact value is 7.0711 — only 0.6% off.

For three-digit numbers, memorize squares up to 30² = 900 and bracket from there.

Method 2: the Babylonian method (Newton's method)

This algorithm has been used for 4,000 years. It converges astonishingly fast — usually 3 or 4 iterations get you to 6 decimal places.

  1. Make any reasonable initial guess g₀ for √n.
  2. Improved guess: g₁ = (g₀ + n/g₀) ÷ 2.
  3. Repeat: g₂ = (g₁ + n/g₁) ÷ 2.
  4. Stop when consecutive guesses agree to your needed precision.

Example: √50. Guess g₀ = 7.

  • g₁ = (7 + 50/7) / 2 = (7 + 7.143) / 2 = 7.0714
  • g₂ = (7.0714 + 50/7.0714) / 2 = (7.0714 + 7.0707) / 2 = 7.0711
  • g₃ = same to 4 decimals. Done.

The number of correct digits roughly doubles with each iteration. Start with a one-digit guess; in three rounds you have eight digits. This is what your calculator's sqrt() function actually does internally.

Method 3: long-division algorithm

Taught in U.S. schools before pocket calculators. Slower but produces an exact decimal expansion to any precision. The procedure is mechanical:

  1. Group digits in pairs from the decimal point outward.
  2. Find the largest integer whose square fits in the leftmost group.
  3. Subtract, bring down the next pair, then find the next digit using the doubling rule.
  4. Repeat for as many decimals as needed.

The procedure is too long to fully demonstrate in one paragraph, but plenty of YouTube videos walk through it. It's worth knowing exists — though for most practical purposes, the Babylonian method is faster and more accurate per unit of effort.

Mental shortcuts for special cases

  • Numbers ending in 25: 625 = 25². 1225 = 35². Pattern: (10a + 5)² = 100a(a+1) + 25. So 65² = 100·6·7 + 25 = 4225.
  • Doubling and halving: √200 = √(100 × 2) = 10√2 ≈ 14.14. Always factor out perfect squares first.
  • Fractions: √(9/16) = 3/4. Take roots of numerator and denominator separately.

Why this is still useful

The SAT no-calculator section, AMC/AIME competition math, and most physics quick-checks reward fast estimation. Even when you have a calculator, knowing the answer should be "around 7" before you press √ catches typos that would otherwise slip through. The estimation method scales — a 4-digit number like √8500 brackets between 90² = 8100 and 95² = 9025, so it's in the low 92s. Always have a ballpark before you trust a calculator.

The historical perspective

For most of human history, square roots were a hand calculation. Babylonian clay tablets from 1800 BC show iterative algorithms equivalent to the Babylonian method. Egyptian and Greek mathematicians developed geometric methods. Indian mathematicians refined the long-division technique that eventually appeared in Western textbooks.

The pocket calculator killed daily hand-calculation of roots for ordinary people, but the methods are still taught in some advanced math classes — and they're useful for understanding what the √ button is actually doing inside the chip. Modern calculators use a refined Newton-Raphson method (essentially the Babylonian method) along with hardware optimizations to compute roots in nanoseconds.

Practice problems to build intuition

Quick mental estimates — what's the integer part of each of these?

  • √50 — between 7² = 49 and 8² = 64, very close to 7. Answer: 7.07.
  • √120 — between 10² = 100 and 11² = 121, very close to 11. Answer: 10.95.
  • √800 — between 28² = 784 and 29² = 841. Answer: 28.28.
  • √1500 — between 38² = 1444 and 39² = 1521. Answer: 38.73.

The bracketing method gives you ±1% accuracy in seconds — perfectly adequate for sanity-checking calculator output or solving a quick problem on a test where work shown matters less than getting the right ballpark.

Verify with the calculator

Once you've estimated by hand, our square root calculator gives you the exact decimal plus the simplified radical form. Check your hand-calculations against it; over time you'll trust your bracket estimates more than the device.