Square Root Calculator

Find square roots, cube roots, and nth roots. Simplify radicals, check for perfect squares, and see if results are rational or irrational.

Find the square root, cube root, or nth root of any number and see the simplified radical form. The calculator factors out perfect squares, tells you whether the result is rational or irrational, and shows the decimal value to full precision.

Ad
Ad

About Square Root Calculator

How to Simplify a Square Root

Simplifying a radical means pulling perfect square factors out from under the root sign. The process works like this:

  1. Factor the number into a product that includes the largest perfect square
  2. Take the square root of the perfect square factor
  3. Write it outside the radical, leaving the remainder inside

Worked example: Simplify √72

  1. Find the largest perfect square factor of 72: 36 × 2 = 72
  2. √72 = √(36 × 2) = √36 × √2
  3. √36 = 6, so √72 = 6√2
  4. As a decimal: 6 × 1.41421... = 8.48528...

More examples:

√nFactorisationSimplified FormDecimal
√5025 × 25√27.07107
√4816 × 34√36.92820
√200100 × 210√214.14214
√9849 × 27√29.89949
√7525 × 35√38.66025
√18036 × 56√513.41641
√124 × 32√33.46410

Perfect Squares Reference

A perfect square has an integer square root. Memorising the first 20 is useful for quick mental maths and simplifying radicals:

nnnn
116361112116256
247491214417289
398641316918324
4169811419619361
525101001522520400

Rational vs Irrational Roots

A root is rational if it can be written as a fraction (whole numbers and terminating decimals). It is irrational if the decimal goes on forever without repeating.

TypeExampleWhy
Rational√25 = 525 is a perfect square
Rational√(9/16) = 3/4Both numerator and denominator are perfect squares
Irrational√2 = 1.41421356...2 is not a perfect square
Irrational√3 = 1.73205080...3 is not a perfect square
Irrational√7 = 2.64575131...7 is not a perfect square

The proof that √2 is irrational was one of the earliest results in mathematics, attributed to Hippasus around 500 BC. In fact, the square root of any non-perfect-square integer is irrational.

Cube Roots and How They Work

A cube root asks: what number multiplied by itself three times gives this value?

∛x = y means y × y × y = x

Worked example: Simplify ∛54

  1. Find the largest perfect cube factor: 27 × 2 = 54
  2. ∛54 = ∛(27 × 2) = ∛27 × ∛2
  3. ∛27 = 3, so ∛54 = 3∛2
  4. As a decimal: 3 × 1.25992... = 3.77976...

Perfect cubes to know:

nn
116216
287343
3278512
4649729
5125101,000

Unlike square roots, cube roots of negative numbers are real. ∛(-8) = -2 because (-2) × (-2) × (-2) = -8.

Nth Roots

The nth root generalises the concept: the nth root of x is the number that, raised to the power n, gives x.

RootNotationAs ExponentExample
Square root√xx^(1/2)√16 = 4
Cube root∛xx^(1/3)∛27 = 3
Fourth root⁴√xx^(1/4)⁴√81 = 3
Fifth root⁵√xx^(1/5)⁵√32 = 2
Sixth root⁶√xx^(1/6)⁶√64 = 2

Even roots (2nd, 4th, 6th) of negative numbers are not real. Odd roots (3rd, 5th, 7th) of negative numbers are real and negative.

Where Square Roots Appear

ApplicationFormulaWhy Roots Are Needed
Pythagorean theoremc = √(a² + b²)Finding the hypotenuse or side of a right triangle
Distance formulad = √((x₂-x₁)² + (y₂-y₁)²)Distance between two points on a plane
Quadratic formulax = (-b ± √(b²-4ac)) / 2aThe discriminant is under a square root
Standard deviationσ = √(variance)Variance is in squared units, root converts back
RMS voltageV_rms = V_peak / √2Root mean square for AC circuits
Escape velocityv = √(2GM/r)Speed needed to leave a gravitational field

Roots and the Exponent Connection

Every root can be written as a fractional exponent, which is the key to handling roots in algebra:

ⁿ√x = x^(1/n)

This means all exponent rules apply to roots. For example, √a × √b = √(ab), and √(a/b) = √a / √b. The exponent calculator handles any base raised to any power, including fractional exponents. For problems involving right triangles, the Pythagorean theorem calculator uses square roots to find missing sides, and the quadratic calculator applies the discriminant rule b² - 4ac under a radical.

How the Calculator Finds Simplified Radicals

The algorithm factors the number under the radical and pulls out perfect-square factors one by one. It trial-divides from 2 upward, checking whether the remaining inside value is divisible by f². Each time it is, f moves outside the radical and f² divides out from inside. The loop stops at √n because any prime factor above √n can appear at most once, so it cannot form a perfect square.

Trace for √200:

  1. Start: outside = 1, inside = 200
  2. f = 2: 200 / 4 = 50, so outside = 2, inside = 50. Check again: 50 / 4 = 12.5 (not divisible), stop for f = 2.
  3. f = 3: 50 / 9 is not an integer, skip.
  4. f = 4: already handled via f = 2 (since 4 = 2²).
  5. f = 5: 50 / 25 = 2, so outside = 2 × 5 = 10, inside = 2. Check again: 2 / 25 is less than 1, stop.
  6. f² = 36 > 2, loop ends.
  7. Result: 10√2, which matches 14.14214 as a decimal.

This is the same method used in CAS engines like SymPy's sqrtdenest and Mathematica's RadicalDenest, though those also handle nested radicals such as √(5 + 2√6) = √2 + √3.

Common Mistakes When Simplifying Roots

The three mistakes that catch most students out are:

  • Stopping at the first perfect square factor. For √72, some students factor as 4 × 18 and write 2√18. That is technically correct but not fully simplified because 18 still contains 9 as a factor. Always pull out the LARGEST perfect square, or repeat until nothing factors.
  • Splitting a sum under a radical. √(a + b) is NOT √a + √b. For example, √(9 + 16) = √25 = 5, not 3 + 4 = 7. Roots distribute over multiplication and division, never over addition or subtraction.
  • Forgetting the ± sign when solving x² = k. The principal square root is always positive, but the equation x² = 25 has two solutions: x = 5 and x = -5. The square root symbol by itself returns only the positive root. This is why the quadratic formula writes ±√(b² - 4ac).

A fourth subtle error: √(x²) equals |x|, not x. If x is negative, squaring removes the sign and the root cannot recover it. Most calculators, including this one, assume non-negative inputs and return the principal root.

Square Roots in History and Culture

The Babylonian clay tablet YBC 7289 (c. 1800-1600 BC) shows √2 computed to five decimal places as 1.41421, an accuracy that was not improved on in Europe for 3,000 years. According to the Yale Babylonian Collection, the tablet uses a numerical method equivalent to Newton's iteration: xₙ₊₁ = (xₙ + n/xₙ)/2. Starting from x₀ = 1.5 and iterating gives 1.41666... then 1.41421... in just two steps.

The Pythagoreans in Ancient Greece proved √2 was irrational around 500 BC. The proof by contradiction - assume √2 = p/q in lowest terms, show both p and q must be even, contradiction - is still taught today in UK A-level Further Maths and US college algebra courses. The Pythagorean Hippasus is traditionally credited (and, per legend, drowned for revealing the result). Modern number theory, per the Britannica entry on irrational numbers, confirms that the square root of any non-perfect-square integer is irrational, extending the Pythagorean result to all such roots.

Newton's method (sometimes called the Newton-Raphson method) is the algorithm your pocket calculator and JavaScript's Math.sqrt use internally, typically in hardware via the x86 SQRTSD instruction or its ARM equivalent. The IEEE 754 standard guarantees Math.sqrt returns a correctly-rounded result within 0.5 ULP (unit in the last place).

Square Roots in Everyday Engineering

Square roots show up everywhere in applied maths, often hidden inside formulas people use without realising. A few concrete examples:

  • Screen sizing. A "55-inch" TV measures its diagonal. For a 16:9 panel, width = 55 × 16 / √(16² + 9²) ≈ 47.9 inches and height ≈ 27.0 inches. Without the square root, you can't convert diagonal size to physical area.
  • GPS accuracy. The "horizontal dilution of precision" reported by GPS receivers uses square roots of covariance matrix elements. A DOP of 1.0 means 1-metre satellite error gives 1-metre position error; higher values multiply the uncertainty.
  • Photography depth of field. Hyperfocal distance is proportional to √(aperture × focal length²), which is why doubling aperture f-number quadruples depth of field at a given focus distance.
  • Finance volatility. Annualising standard deviation from daily returns uses √252 (trading days per year) as the scaling factor, per the CFA Institute's Level I curriculum.
  • Water flow. The orifice flow equation Q = Cd × A × √(2gh) uses a square root to relate discharge to head pressure, per the USGS Water Supply Paper 2175.

Any time a formula contains a squared term on one side and a linear term on the other, rearranging it will produce a square root. This is why √ appears in relativity (Lorentz factor), quantum mechanics (wavefunction normalisation), and statistics (the Z-score involves a denominator of √n).

Sources

All calculations run entirely in your browser. No data is sent to any server.

Frequently Asked Questions

How does the radical simplification work?

The calculator factors out perfect squares from under the radical. For example, sqrt(72) becomes 6*sqrt(2) because 72 = 36 x 2 and sqrt(36) = 6.

Can I calculate cube roots and higher?

Yes. Use the Cube Root tab for cube roots, or the Nth Root tab for any root index like 4th root, 5th root, etc.

What does rational vs irrational mean?

A rational root is a whole number or fraction (like sqrt(25) = 5). An irrational root cannot be expressed as a fraction and has infinite non-repeating decimals (like sqrt(2) = 1.41421...).

Can I find the square root of negative numbers?

Square roots of negative numbers are not real numbers. They produce complex (imaginary) numbers. This calculator works with real numbers only.

What is a perfect square?

A perfect square is a number that has an integer square root. Examples are 1, 4, 9, 16, 25, 36, 49, 64, 81, and 100. The reference table shows perfect squares from 1 to 20.

Link to this tool

Copy this HTML to link to this tool from your website or blog.

<a href="https://toolboxkit.io/tools/square-root-calculator/" title="Square Root Calculator - Free Online Tool">Try Square Root Calculator on ToolboxKit.io</a>