how to find square root without calculator

Square Root Practice Tool (No calculator method)

Enter a positive number to estimate its square root using the Babylonian method (the same logic you can do by hand).

Knowing how to find square roots without a calculator is one of those math skills that keeps paying you back. It helps in exams, improves number sense, and makes algebra and geometry less intimidating. The good news: you do not need advanced math to do it.

Quick idea: a square root asks this question: “What number multiplied by itself gives the original number?”
Example: √49 = 7 because 7 × 7 = 49.

Method 1: Use nearby perfect squares (fast estimation)

This is the quickest non-calculator method for rough answers.

  1. Find two perfect squares around your number.
  2. Take their roots.
  3. Your answer lies between those two roots.

Example: find √50

  • 49 < 50 < 64
  • √49 = 7 and √64 = 8
  • So √50 is between 7 and 8, and very close to 7.

Since 50 is just 1 more than 49, a good estimate is around 7.07.

Perfect squares to memorize

n n
1111121
2412144
3913169
41614196
52515225
63616256
74917289
86418324
98119361
1010020400

Method 2: Prime factorization (great for perfect-square numbers)

If the number is a perfect square, prime factorization gives an exact root.

Example: √144

Factorize:

144 = 2 × 2 × 2 × 2 × 3 × 3

Pair equal factors:

(2×2)(2×2)(3×3) = 12²

So:

√144 = 12

Rule: every pair inside √ becomes one number outside √.

Method 3: Long-division square root algorithm (digit-by-digit)

This is the classic written method taught in many schools. It works for perfect and non-perfect squares and can produce as many decimal places as you want.

Steps

  1. Group digits in pairs from right to left for whole numbers, and from decimal point outward for decimals.
  2. Find the largest square less than or equal to the first group.
  3. Subtract, bring down the next pair.
  4. Double the current root and use it as a trial divisor base.
  5. Choose the largest digit x such that (base×10 + x)×x fits in the current dividend.
  6. Repeat.

Mini example: √2025

  • Pair as 20 | 25
  • Largest square in 20 is 4² = 16 → first digit 4
  • Remainder 20−16 = 4; bring down 25 → 425
  • Double 4 → 8_ . Find x where 8x × x ≤ 425
  • x = 5 gives 85 × 5 = 425 exactly
  • Root is 45

Therefore, √2025 = 45.

Method 4: Babylonian (Newton) method — easiest high-accuracy method

This is an iterative approach. Start with a guess, then improve it quickly.

new guess = (guess + N / guess) / 2

Repeat until the value stabilizes.

Example: √20

  • Start guess = 4.5
  • Next = (4.5 + 20/4.5)/2 = 4.4722...
  • Next again ≈ 4.4721...

So √20 ≈ 4.4721.

This method converges very fast. In 3–6 rounds, you usually get excellent accuracy.

Method 5: Decimal and fraction awareness

You can also reason with decimals:

  • √0.09 = 0.3 because 0.3² = 0.09
  • √2.25 = 1.5 because 1.5² = 2.25
  • √0.0004 = 0.02 because 0.02² = 0.0004

For fractions, simplify first when possible:

√(49/64) = √49 / √64 = 7/8

Common mistakes to avoid

  • Forgetting that √a × √a = a (check your final answer by squaring it).
  • Assuming √(a+b) = √a + √b (this is usually false).
  • Skipping perfect-square checks before doing long work.
  • Stopping estimates too early when precision is required.

Practice set (with answers)

Try first

  • √81
  • √72
  • √0.16
  • √196
  • √18 (to 2 decimal places)

Answers

  • √81 = 9
  • √72 ≈ 8.49
  • √0.16 = 0.4
  • √196 = 14
  • √18 ≈ 4.24

Final takeaway

If you need speed, use nearby perfect squares. If you need exact roots for perfect squares, use prime factorization. If you need high precision for any number, use the Babylonian method. Master these three and you can find square roots confidently without a calculator.

🔗 Related Calculators