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.