AllFreeCalculator

Square Root Calculator

Square root or any nth root, with a simplified radical form when the number factors cleanly.

√72

Decimal

Perfect root?

Verification

What the square root calculator does

The square root calculator finds the principal (positive) square root of a number, along with its simplified radical form when the input is a non-negative integer. Switch to nth-root mode and it computes any integer-index root — cube roots, fourth roots, fifth roots — handling negative numbers correctly for odd indices. It also checks whether the result is a perfect root and verifies the answer by raising it back to the appropriate power.

What "simplified radical" means

A radical is in simplest form when there is no perfect-square factor (other than 1) left inside the root sign. For instance, √72 is not in simplest form: 72 = 36 × 2, and 36 is a perfect square. Pulling it out gives √72 = √36 × √2 = 6√2. The calculator does this factoring automatically and shows the result whenever it is cleaner than the decimal.

The algorithm

To simplify √n, find the largest perfect square that divides n. The calculator scans i from 2 upward, dividing n by i² whenever possible and collecting i into the outside factor. When done, anything left is the new inside factor. The same idea extends to nth roots: collect factors of iⁿ rather than i².

Real vs imaginary roots

Square roots of negative numbers are not real — they are imaginary, written as √(−4) = 2i. This calculator works with real numbers only, so it shows "Not a real number" for that case rather than returning NaN. Cube roots and other odd-indexed roots of negative numbers are real (∛(−8) = −2), and the calculator handles them correctly.

Where square roots appear

Square roots are everywhere in geometry (the Pythagorean theorem c = √(a² + b²)), statistics (standard deviation is the square root of variance), physics (RMS values, escape velocity), finance (volatility scales with √time) and computer graphics (vector magnitudes). Understanding when and how to take a root quickly is one of the most reused tools in applied maths.

Quick mental estimates

Even without a calculator, you can estimate roots quickly using neighbouring perfect squares. √50 sits between √49 = 7 and √64 = 8, closer to 7 — about 7.07 in fact. √200 is between √196 = 14 and √225 = 15, again closer to the lower end — about 14.14. This kind of sanity check catches input mistakes fast.

Use with the other tools

For powers and general exponents, the exponent calculator handles base^exponent in both directions. For a full expression engine, the scientific calculator combines roots with everything else. For standard deviation (which uses square roots), see the standard deviation calculator.

Frequently asked questions

What is a square root?

The square root of x is the non-negative number that, when squared, gives x. So √25 = 5 because 5² = 25. Every positive number actually has two square roots — a positive (the "principal" root) and a negative — but most calculators return the positive one.

What is a simplified radical?

A radical is in simplest form when no perfect-square factor (other than 1) is left inside the root. √72 simplifies because 72 = 36 × 2, so √72 = √36 × √2 = 6√2. This calculator shows the simplified radical whenever the input is a non-negative integer.

What is an nth root?

An nth root is the number that, raised to the nth power, gives your value. The cube root of 27 is 3 because 3³ = 27. The fourth root of 16 is 2 because 2⁴ = 16. The calculator handles any positive integer index n via the nth root mode.

Can you take the square root of a negative number?

Not in the real numbers. The square root of a negative number is an imaginary number, which lives in the complex numbers. This calculator works with real numbers, so √(−4) returns "Not a real number". Cube root of a negative number is fine though: ∛(−8) = −2.

What is the difference between a rational and irrational square root?

Rational means it can be written as a fraction. √16 = 4 is rational. √2 ≈ 1.414213…, with a non-repeating non-terminating decimal, is irrational. The calculator shows the exact simplified radical for irrationals and a decimal approximation.

Why does √0 = 0?

Because 0² = 0. The square root of zero is zero. It is the one number where the two square roots (the positive and the negative) coincide.

Worked example

Simplify √72.

  • Find the largest perfect-square factor of 72: 72 = 36 × 2, and 36 = 6²
  • Pull the square root of 36 outside: √72 = √36 × √2 = 6√2
  • Decimal: 6 × √2 ≈ 6 × 1.41421 ≈ 8.4853
  • Verify: 8.4853² ≈ 72.00 ✓

For a cube root: ∛216 = 6 because 6³ = 216. ∛100 is not a perfect cube — the calculator returns 4.6416 and a verification of 4.6416³ ≈ 100.

Related calculators