Square Root Calculator

Calculate the square root of any number with detailed explanations. Perfect for students, engineers, and quick calculations.

0 = 0
Verification

What is a Square Root?

The square root of a number is a value that, when multiplied by itself, equals the original number. It's the inverse operation of squaring a number.

Mathematical notation: √x or x1/2

Example: √144 = 12 because 12 × 12 = 144

Perfect Squares vs Non-Perfect Squares

Perfect squares are numbers whose square roots are whole numbers (integers). Examples: 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, etc.

Non-perfect squares have irrational square roots—decimals that never end or repeat. Examples: √2 = 1.41421356..., √3 = 1.73205080..., √5 = 2.23606797...

Why Square Roots Matter

How to Calculate Square Roots

Method 1: Calculator (Fastest)

Most calculators have a √ button. Enter number, press √ button. Digital calculators and computer software use iterative algorithms (like Newton's method) to approximate square roots to many decimal places instantly.

Method 2: Prime Factorization (Perfect Squares)

Break number into prime factors, pair them up, multiply one from each pair.

Example: √144

  1. Prime factorization: 144 = 2 × 2 × 2 × 2 × 3 × 3
  2. Group pairs: (2 × 2) × (2 × 2) × (3 × 3)
  3. Take one from each pair: 2 × 2 × 3 = 12
  4. Answer: √144 = 12

Example: √180

  1. Prime factorization: 180 = 2 × 2 × 3 × 3 × 5
  2. Group pairs: (2 × 2) × (3 × 3) × 5
  3. Take one from each pair, leave unpaired: 2 × 3 × √5
  4. Answer: √180 = 6√5 ≈ 6 × 2.236 ≈ 13.416

Method 3: Estimation & Refinement

For mental math or when calculator unavailable:

Example: √50

  1. Find nearest perfect squares: 49 (7²) and 64 (8²)
  2. √50 is between 7 and 8
  3. 50 is closer to 49, so estimate 7.1
  4. Test: 7.1 × 7.1 = 50.41 (close!)
  5. Refine: 7.07 × 7.07 = 49.98 (closer)
  6. Actual: √50 = 7.071...

Method 4: Long Division Method (Historical)

Before calculators, people used long division-like algorithm to find square roots by hand. Still taught in some schools for understanding, but impractical today. Similar to long division but involves pairing digits and finding largest square at each step. Tedious but works for any number to any precision.

Newton's Method (How Calculators Work)

Iterative approximation: Start with guess, refine until accurate.

Formula: Next guess = (guess + number/guess) / 2

Example: √20

  1. Initial guess: 4 (since 4² = 16, close to 20)
  2. Iteration 1: (4 + 20/4) / 2 = (4 + 5) / 2 = 4.5
  3. Iteration 2: (4.5 + 20/4.5) / 2 = (4.5 + 4.444) / 2 = 4.472
  4. Iteration 3: (4.472 + 20/4.472) / 2 = 4.47213...
  5. Converges rapidly to √20 = 4.47213595...

Common Perfect Squares to Memorize

Perfect Squares 1-25

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

Larger Perfect Squares Worth Knowing

30² = 900, 40² = 1,600, 50² = 2,500, 60² = 3,600, 70² = 4,900, 80² = 6,400, 90² = 8,100, 100² = 10,000

Memorizing these helps with mental estimation and recognizing perfect squares in problems.

Properties of Square Roots

Product Property

√(a × b) = √a × √b

Example: √72 = √(36 × 2) = √36 × √2 = 6√2

Use this to simplify square roots by factoring out perfect squares.

Quotient Property

√(a / b) = √a / √b

Example: √(25/4) = √25 / √4 = 5 / 2 = 2.5

Square Root of a Square

√(x²) = |x| (absolute value of x)

Example: √(5²) = √25 = 5, and √((-5)²) = √25 = 5

The square root of a squared number always gives the positive (absolute) value.

Principal Square Root

Every positive number has two square roots: positive and negative. 3² = 9 AND (-3)² = 9. The √ symbol means principal (positive) square root only.

√9 = 3 (not ±3). If you need both roots, write ±√9 = ±3.

Square Root of Negative Numbers

Square root of negative numbers involves imaginary numbers (i = √-1). √-16 = 4i. This is complex number territory, not covered by standard square root calculator. In real number system, square roots of negative numbers are undefined.

Real-World Applications

Geometry & Construction

Square area to side length: Floor area = 324 sq ft. Side length = √324 = 18 feet.

Diagonal of square: Diagonal = side × √2. Square with 10" sides has diagonal = 10√2 ≈ 14.14 inches.

Pythagorean Theorem: Right triangle with legs 3 and 4. Hypotenuse = √(3² + 4²) = √(9 + 16) = √25 = 5. The famous 3-4-5 right triangle.

Distance Formula

Distance between two points (x₁, y₁) and (x₂, y₂): d = √((x₂ - x₁)² + (y₂ - y₁)²)

Example: Distance from (1, 2) to (4, 6): d = √((4-1)² + (6-2)²) = √(9 + 16) = √25 = 5 units

Physics - Free Fall

Time to fall from height: t = √(2h/g), where h = height, g = gravity (9.8 m/s²)

Example: Object dropped from 80 meters. Time = √(2 × 80 / 9.8) = √16.33 ≈ 4.04 seconds

Finance - Compound Growth

Finding annual growth rate from total growth over 2 years: Annual rate = √(Final/Initial) - 1

Example: Investment grows from $10,000 to $12,100 in 2 years. Annual rate = √(12,100/10,000) - 1 = √1.21 - 1 = 1.1 - 1 = 0.10 = 10% per year

Statistics - Standard Deviation

Standard deviation is square root of variance. Variance = average squared deviation. Standard deviation brings units back to original scale.

Example: Variance = 64. Standard deviation = √64 = 8.

Simplifying Square Roots

What Does Simplifying Mean?

Express square root with smallest possible number under the radical by factoring out perfect squares.

Step-by-Step Process

Example: Simplify √200

  1. Find largest perfect square factor: 200 = 100 × 2
  2. Split using product property: √200 = √(100 × 2) = √100 × √2
  3. Simplify perfect square: √100 = 10
  4. Final answer: 10√2

Example: Simplify √288

  1. Prime factorization: 288 = 2 × 2 × 2 × 2 × 2 × 3 × 3
  2. Identify perfect square pairs: (2×2) × (2×2) × 2 × (3×3)
  3. Extract pairs: 2 × 2 × 3 = 12, leaving 2 inside
  4. Final answer: 12√2

Common Simplifications

Adding & Subtracting Square Roots

Like Radicals

Can only add/subtract square roots with same radicand (number under √).

Valid: 3√5 + 2√5 = 5√5 (like terms, same as 3x + 2x = 5x)

Invalid: √2 + √3 cannot be simplified (different radicands)

Simplify First, Then Combine

Example: √50 + √18

  1. Simplify each: √50 = 5√2 and √18 = 3√2
  2. Now they're like radicals: 5√2 + 3√2 = 8√2

Example: √48 - √12 + √75

  1. Simplify: √48 = 4√3, √12 = 2√3, √75 = 5√3
  2. Combine: 4√3 - 2√3 + 5√3 = 7√3

Multiplying & Dividing Square Roots

Multiplying Square Roots

√a × √b = √(a × b)

Examples:

Dividing Square Roots

√a / √b = √(a / b)

Examples:

Rationalizing the Denominator

Eliminate square roots from denominators by multiplying by √/√.

Example: 5/√3

  1. Multiply top and bottom by √3: (5 × √3) / (√3 × √3)
  2. Simplify: 5√3 / 3

Example: 12/√8

  1. Simplify √8 first: √8 = 2√2, so 12/(2√2) = 6/√2
  2. Rationalize: (6 × √2) / (√2 × √2) = 6√2 / 2 = 3√2

Common Mistakes to Avoid

Mistake 1: Adding Square Roots Incorrectly

❌ Wrong: √4 + √9 = √13

✓ Correct: √4 + √9 = 2 + 3 = 5

Cannot add numbers inside different square roots. Simplify each first, then add.

Mistake 2: Squaring Incorrectly

❌ Wrong: (√5)² = 5²

✓ Correct: (√5)² = 5

Squaring and square root are inverse operations—they cancel out.

Mistake 3: Distributing Square Root

❌ Wrong: √(x + y) = √x + √y

✓ Correct: √(x + y) cannot be simplified this way

Product/quotient properties work, but NOT sum/difference. √(4 + 9) = √13 ≠ 2 + 3.

Mistake 4: Negative Square Roots

❌ Wrong: √9 = ±3

✓ Correct: √9 = 3 (principal square root is positive only)

√ symbol means positive root. If equation is x² = 9, then x = ±3. But √9 = 3 only.

Mistake 5: Simplification Errors

❌ Wrong: √24 = 2√6 (missed larger perfect square factor)

✓ Correct: √24 = √(4 × 6) = 2√6, or better: √(4 × 4 × 1.5)... wait, √24 = 2√6 is correct!

Actually the first was right. Better example: √32 = 4√2 not 2√8 (fully simplify).

Frequently Asked Questions

Can you take the square root of a negative number?

Not in the real number system. √-1 is defined as "i" (imaginary unit) in complex numbers. √-9 = 3i. For real-world calculations and basic algebra, square roots of negatives are undefined. Scientific calculators show "Error" for √(-x).

What's the difference between √ and ²?

They're inverse operations. Squaring (²) multiplies number by itself. Square root (√) finds what number multiplied by itself gives the result. 5² = 25. √25 = 5. They undo each other: √(x²) = x and (√x)² = x.

Why is √2 irrational?

Proof by contradiction shows √2 cannot be expressed as fraction. It's decimal expansion never ends or repeats: 1.41421356237309504880168872420969... Many square roots are irrational (any non-perfect square). This was one of ancient Greeks' most important mathematical discoveries.

How do I estimate square roots in my head?

Find nearest perfect squares above and below. For √30: 25 < 30 < 36, so 5 < √30 < 6. Since 30 is closer to 25, estimate ≈5.5. (Actual: 5.477). Practice with perfect squares 1-100 to get faster.

What's the square root of 0?

√0 = 0. Zero is special case—only number equal to its own square root. 0 × 0 = 0, so √0 = 0.

How many decimal places should I use?

Depends on context. Engineering: 3-4 decimals usually sufficient. Scientific calculations: 6-8. Financial: 2. Most real-world situations don't need beyond 4 decimal places. Additional precision is just noise.