Finding Square Roots- Methods and Examples

What Is a Square Root?

A square root is the number you multiply by itself to get another number. If √9 = 3, it's because 3 Γ— 3 = 9. Simple enough.

Every positive number has two square rootsβ€”one positive, one negative. √16 equals both 4 and -4. Most of the time, when people say "the square root," they mean the positive value.

Zero is its own square root. Negative numbers don't have real square roots. That's just how math works.

Why You Need to Know This

Square roots show up everywhere. Geometry, physics, statistics, engineering, finance. If you're working with areas, distances, or standard deviations, you're dealing with square roots whether you like it or not.

You don't need to memorize every square root. You need to understand the methods so you can find any one when required.

Methods for Finding Square Roots

Four main approaches exist. Pick based on what you have and what precision you need.

1. Estimation Method

Fastest when you don't need exact answers. Find two perfect squares that bracket your number, then estimate between them.

Example: Find √20

9 < 20 < 25

√9 = 3, √25 = 5

20 is closer to 25, so estimate around 4.4-4.5. The actual value is 4.472... Close enough for most practical purposes.

2. Prime Factorization Method

Works only for perfect squares. Break the number into prime factors, pair them up, and multiply one from each pair.

Example: Find √144

144 = 2 Γ— 2 Γ— 2 Γ— 2 Γ— 3 Γ— 3

Group into pairs: (2Γ—2) Γ— (2Γ—2) Γ— (3Γ—3)

Take one from each pair: 2 Γ— 2 Γ— 3 = 12

√144 = 12

This method is useless for non-perfect squares like 20 or 50.

3. Long Division Method

Accurate and works for any number. It's tedious by hand but follows a consistent algorithm.

Steps:

This is the method textbooks teach. It's slow but produces exact values digit by digit.

4. Using a Calculator

Most people use this. Hit the √ button, punch in your number, done.

Every scientific calculator has a square root function. So does every smartphone calculator, spreadsheet, and programming environment. Python has math.sqrt(), Excel has SQRT().

No shame in using tools. Engineers do it. Scientists do it. Anyone doing actual work does it.

Quick Comparison

MethodSpeedAccuracyBest For
EstimationFastApproximateQuick mental math
Prime FactorizationMediumExact (if perfect square)Perfect squares only
Long DivisionSlowExact to any digitLearning the process
CalculatorInstantExactPractical work

How to Find Square Roots: Step-by-Step

Here's the practical process for any number:

Step 1: Identify if you need an exact or approximate answer. Exact only works for perfect squares.

Step 2: Check if it's a perfect square (1, 4, 9, 16, 25, 36, 49, 64, 81, 100...). If yes, factorization works. If no, move on.

Step 3: For non-perfect squares, use estimation or a calculator. Estimate by finding nearby perfect squares and interpolating.

Step 4: Verify by squaring your result. If you got 4.47 for √20, check: 4.47² = 19.98. Close enough.

That's it. No magic here.

Common Square Root Values Worth Knowing

√2 and √3 come up constantly in geometry (diagonals), so memorize those approximations. √5 appears in finance sometimes. The rest you can derive or look up.

When Square Roots Get Complicated

Square roots of negative numbers involve imaginary numbers (i). If you encounter √(-1), you're outside real numbers. That matters in advanced math but rarely in everyday calculations.

Simplifying radicals is another skill. √50 = √(25Γ—2) = 5√2. This keeps expressions cleaner and is required in algebra.

Bottom Line

You have four methods. Estimation for quick answers, prime factorization for perfect squares, long division to understand the process, and calculators for actual work. Know when to use each.

Memorize the common perfect squares. Learn the estimation trick. Use a calculator for everything else. That's all you need.