Math

Nth Root Calculator

Calculate the nth root of any number with customizable root value and step-by-step solution.

CALCULATOR

Enter your numbers

Instant results
2.000000
5th Root
Finding the 5th root of 32
5th root = 32^(1/5)
5th root ≈ 2.000000

THE NUMORIX GUIDE

How to use the Nth Root Calculator

Last reviewed September 14, 2026

What this calculator does

Compute the nth root as number^(1/root) using Math.

Formula and method

Compute the nth root as number^(1/root) using Math.pow. The engine also labels root 2 and root 3 as square-root and cube-root cases.

Variables and inputs

Number defaults to 32 and Root n to 5. The UI displays number and root fields and asks for a positive root, though the engine does not fully validate every edge case.

Worked example

For the defaults: fifth root = 32^(1/5) = 2 because 2^5 = 32. For root 2, the same method is the square root; for root 3, it is the cube root.

How to interpret the result

An nth root reverses raising a number to the nth power. The real-domain answer depends on whether n is even or odd and on the sign of the input.

Common mistakes to avoid

Use 1/n as the exponent, not n, and do not forget that even roots of negative real numbers are not real.

Assumptions and limitations

Math.pow can return NaN for negative inputs with noninteger or even-root exponents, and root zero makes the exponent undefined. The UI does not display a domain-specific error for all such cases.

Practical use and checks

The Nth Root Calculator returns a number that raised to the entered root approximates the input. Enter number 32 and root 5 as a check; the result should be 2 because 2 to the fifth power is 32. Enter number 81 and root 4 to check an even-root case; the principal real result should be 3. Use the result for scale calculations, geometry, or reversing a power, and verify it by raising the displayed answer back to the selected root. The root index changes the domain and the interpretation. An odd root can have a real negative result, while an even root of a negative number has no real answer. A root of 1 returns the original number, but a zero or fractional root index is not a normal request and can create undefined behavior. The engine uses Number exponentiation and does not attach units, so the unit of an nth root must be derived from the original formula; the fifth root of a quantity in fifth-power units is a linear unit. Display precision can make the back-check differ in the last digits. For precision-critical engineering or scientific work, state whether the principal real root or a complex root is required and use a tool that supports the intended number system.

Sources and references

COMMON QUESTIONS

Frequently asked questions

Why is the exponent 1/n?

Because (a^n)^(1/n) returns a for the appropriate real-domain branch; the fractional exponent is the standard root notation.

What happens for an even root of a negative number?

There is no real result; a complex-number calculation would be required.