How To Find a Square Root | Methods That Never Feel Confusing

A square root is the number that, when multiplied by itself, gives the original value.

Square roots show up everywhere in math class: geometry, algebra, graphs, even basic science formulas. The good news is you don’t need one “magic trick.” You need a small set of methods, plus a feel for what a sensible answer looks like.

This article walks you through the main ways to find a square root, from quick mental checks to solid paper-and-pencil methods. You’ll learn how to spot perfect squares fast, estimate when you can’t get an exact integer, and compute a decimal answer when you need one.

What A Square Root Means In Plain Math

The square root of a number n is a value r such that r × r = n. If you square the root, you return to the starting number.

Some numbers have “clean” square roots:

  • √25 = 5 because 5 × 5 = 25
  • √144 = 12 because 12 × 12 = 144

Many numbers don’t land on a whole number. √2, √3, √50, √99 — these have decimal answers that keep going. That’s normal. The goal is to pick the right method for what the problem wants.

Two Roots Show Up With Positive Numbers

If a problem says “solve x² = 25,” there are two solutions: x = 5 and x = −5. Both square to 25.

When a problem says “find √25,” it usually means the principal square root, which is the nonnegative one. So √25 is 5.

When The Root Is Not A Real Number

In the real-number system, you can’t take the square root of a negative number. You’ll see that later in complex numbers, using i. If you’re working in basic algebra or geometry, a negative under the radical usually means “not a real number.”

Start With Perfect Squares You Can Recall Fast

Before you compute anything, check whether your number is a perfect square. This saves time and reduces mistakes. Here are some common ones many students keep in their head:

  • 1² = 1
  • 2² = 4
  • 3² = 9
  • 4² = 16
  • 5² = 25
  • 6² = 36
  • 7² = 49
  • 8² = 64
  • 9² = 81
  • 10² = 100
  • 11² = 121
  • 12² = 144
  • 13² = 169
  • 14² = 196
  • 15² = 225

Quick check: if your number sits exactly on this list, you’re done. If it lands between two perfect squares, you already have a tight estimate range.

A Fast Range Check That Prevents Bad Answers

Say you need √70. Since 8² = 64 and 9² = 81, you know:

  • √70 is bigger than 8
  • √70 is smaller than 9

That one step keeps your final answer from drifting into nonsense. It’s also a great way to catch calculator typos.

How To Find a Square Root By Estimating Between Squares

When the root isn’t a whole number, you can still get a strong estimate fast. The idea is simple: anchor between two perfect squares, then refine.

Step-By-Step Estimation Method

  1. Bracket the number between two perfect squares.
  2. Pick a decimal guess between the two integers.
  3. Square your guess and see if you’re high or low.
  4. Adjust and repeat until you hit the needed precision.

Worked Example: √70 To Two Decimal Places

We already know √70 is between 8 and 9.

Try 8.4: 8.4² = 70.56 (a bit high). Try 8.3: 8.3² = 68.89 (low). So √70 is between 8.3 and 8.4.

Try 8.37: 8.37² = 70.0569 (slightly high). Try 8.36: 8.36² = 69.8896 (low). So √70 is between 8.36 and 8.37.

That pins it to 8.37 to two decimal places. You didn’t need fancy tools — just bracketing and a few squares.

If you want extra practice with radicals and estimation drills, OpenStax has clear examples and exercises in its algebra chapters on radicals and rational exponents. OpenStax Intermediate Algebra (Radicals Unit) is a solid reference for standard rules and practice sets.

How To Find a Square Root By Simplifying The Radical

Sometimes the best answer is not a decimal. Many school problems want a simplified radical, like √72 = 6√2. This is clean, exact, and often the expected format.

The Core Rule: Pull Out Perfect-Square Factors

If a number inside the radical has a perfect-square factor, you can split it:

√(a × b) = √a × √b (when a and b are nonnegative)

Example: √72

Factor 72 into a perfect square times something else:

  • 72 = 36 × 2
  • √72 = √(36 × 2) = √36 × √2 = 6√2

Prime Factor Method For Simplifying

If you don’t see a perfect square right away, prime factorization makes it mechanical.

  1. Prime-factor the number.
  2. Pair up matching primes.
  3. Each pair leaves the radical and becomes one factor outside.
  4. Any unpaired primes stay inside.

Example: √180

180 = 2 × 2 × 3 × 3 × 5. Pair the 2s and 3s:

  • √180 = √(2² × 3² × 5) = 2 × 3 × √5 = 6√5

This method shines when numbers are big or messy.

Method Best Use What You Get
Perfect-Square Recall Numbers like 9, 16, 144 Exact whole-number root
Range Check Between Squares Quick sanity check A tight interval (like 8 < √70 < 9)
Estimation By Squaring Guesses Need 1–3 decimal places Decimal root to chosen precision
Factor And Simplify Radical form is expected Exact simplified radical (like 6√2)
Prime Factor Pairing Large composites Exact simplified radical with fewer steps later
Long Division Square Root No calculator allowed Decimal root, one digit at a time
Newton’s Method Fast decimals with a starting guess Quickly improving decimal root
Calculator Verification Checking work Confidence and error catching

How To Find a Square Root With The Long Division Method

If you’ve ever seen a “square root bracket” in old textbooks, that’s the long division method. It looks odd at first, yet it’s steady and exact in a pencil-and-paper way. You build the root digit by digit.

Why This Method Works

Each step chooses the next digit so the squared result stays under the target number. The process keeps tightening the fit, the same way regular long division builds a quotient.

Long Division Steps In A Clean Checklist

  1. Group digits of the number into pairs from the decimal point outward (…, 12 | 34 | 56). Add pairs of zeros if you want decimals.
  2. Find the largest square less than or equal to the first group. Put its root as the first digit.
  3. Subtract that square from the first group, then bring down the next pair.
  4. Double the current root and use it as a base to find the next digit.
  5. Choose the next digit so (base with digit) × (digit) fits under the current remainder.
  6. Repeat to get more digits.

Mini Example: √1521

Group as 15 | 21.

  • Largest square ≤ 15 is 9, root digit 3. Subtract 9: remainder 6. Bring down 21 → 621.
  • Double current root (3) → 6_. Find digit d so (60 + d) × d ≤ 621.
  • d = 9 works: (60 + 9) × 9 = 621. Remainder 0.

So √1521 = 39. Clean and exact.

This method is handy in no-calculator exams because you control the precision: stop at one decimal place, or keep going until the instructions are met.

How To Find a Square Root Faster With Newton’s Method

If you want decimals fast and you can do a bit of division, Newton’s method gets you there with fewer rounds than guess-and-check. You start with a guess, then update it using a repeating formula.

The Update Rule

To find √n, pick a starting guess x₀, then repeat:

xnew = (x + n/x) ÷ 2

Each update tends to pull you closer to the true square root.

Example: √70 With Newton Updates

Start with x = 8.4 (since 8² and 9² bracket 70).

  • Update 1: (8.4 + 70/8.4) ÷ 2 = (8.4 + 8.3333…) ÷ 2 = 8.3666…
  • Update 2: (8.3666… + 70/8.3666…) ÷ 2 ≈ 8.3666…

You can see it settles quickly. If you check your result by squaring, it lands close to 70.

If you want a deeper math explanation of why Newton’s method homes in so fast, Wolfram MathWorld’s page gives the core idea and the formula in a straightforward way. Wolfram MathWorld: Newton’s Method is a reliable reference for the update rule and its logic.

Common Square Root Mistakes And How To Avoid Them

Square roots are a common place for small slips. Most errors come from the same handful of habits.

Mixing Up √(a + b) With √a + √b

This one trips up many students:

  • √(9 + 16) = √25 = 5
  • √9 + √16 = 3 + 4 = 7

They are not the same. You can split a product inside a radical, not a sum.

Forgetting The Principal Root Rule

√25 is 5. The negative number shows up when you solve x² = 25, not when you read √25 by itself.

Not Checking The Size Of Your Answer

If you know 8² = 64 and 9² = 81, then √70 must sit between 8 and 9. If your final answer is 7.2 or 10.1, something went off the rails.

Rounding Too Early

When you’re chaining steps, keep a few extra digits until the end, then round once. Early rounding can push your final value off target, especially in geometry problems where a root feeds into another formula.

Quick Reference Table Of Perfect Squares

This table helps with bracketing and mental checks. If you can spot the two squares around your number, you can estimate the root with less effort.

Number (n)
1 1
2 4
3 9
4 16
5 25
6 36
7 49
8 64
9 81
10 100
11 121
12 144
13 169
14 196
15 225
16 256
17 289
18 324
19 361
20 400
21 441
22 484
23 529
24 576
25 625

Choosing The Right Method Based On The Question

Many “square root” questions are not asking the same thing. Before you start, read the prompt like a detective. A few words change the whole expected format.

When A Whole Number Is Expected

If the number is a perfect square (like 81), the answer is an integer. Use recall or quick checking.

When A Simplified Radical Is Expected

If the problem says “simplify” or it’s in an algebra section on radicals, the answer often stays in radical form. Use factor-and-simplify or prime pairing.

When A Decimal Is Expected

Word problems, measurement problems, and many calculator-based tasks want a decimal. Use estimation, long division, or Newton’s method.

When The Root Appears Inside A Bigger Expression

Keep it exact as long as you can. A simplified radical keeps later steps cleaner, especially if you’ll add, subtract, or simplify again. Convert to a decimal at the end if the instructions ask for it.

Practice Prompts With Built-In Self Checks

Try these and use the range check after each one. Don’t rush. The habit of checking size is what makes your answers feel steady under test pressure.

  1. Find √196. (Check: your answer should be between 10 and 20.)
  2. Simplify √72. (Check: you should end with a number times √2.)
  3. Estimate √50 to two decimal places. (Check: your answer should be between 7 and 8.)
  4. Simplify √180. (Check: you should end with a number times √5.)
  5. Estimate √99 to one decimal place. (Check: your answer should be between 9 and 10.)

Final Checks That Make Your Answer Reliable

Before you move on, run two quick checks:

  • Square it back. If your answer is r, compute r² and see if you return close to the original number.
  • Check the bracket. Verify your answer sits between the two nearest perfect-square roots you identified.

Those two steps catch most mistakes in seconds. Over time, they also build your number sense, which makes the next set of problems feel lighter.

References & Sources