Square Root / Nth Root Calculator
Calculate the square root, cube root, or any nth root of a number. Handles negative numbers for odd roots (where defined) and shows results in multiple forms.
Inputs
n=2 for square root, n=3 for cube root, etc.
nth root
โ
Square root (n=2)
โ
Cube root (n=3)
โ
Check: result^n
โ
About Square Root / Nth Root Calculator
Why no even root of negative?
In real numbers, xยฒ โฅ 0 always, so no real x squares to a negative. The complex solution exists (using i = โโ1) but this calculator stays in real numbers.
Odd roots of negatives
These do exist: โ(โ8) = โ2 because (โ2)ยณ = โ8. The cube of a negative is negative, so cube roots preserve sign.
Connection to exponents
The nth root of x is x^(1/n). All root calculations here use this identity via JavaScriptโs Math.pow.