What Is an Nth Root?
The nth root of a number x is a value r such that r raised to the power n equals x. Written mathematically: r = x1/n, or equivalently, rn = x. The nth root is the inverse operation of raising to the nth power.
The most familiar roots are the square root (n=2) and cube root (n=3), but roots can be taken for any positive integer index.
Common Root Types
Square Root (n = 2)
The most common root. Finds a number that, when multiplied by itself, gives the original number.
Cube Root (n = 3)
Finds a number that, when cubed (multiplied by itself three times), gives the original number. Works for negative numbers too.
Fourth Root (n = 4)
Equivalent to taking the square root twice. Used in some statistical and engineering formulas.
Perfect Roots
A perfect root occurs when the nth root of a number is an exact integer. For example:
- sqrt(25) = 5 (perfect square root, because 5 x 5 = 25)
- cbrt(64) = 4 (perfect cube root, because 4 x 4 x 4 = 64)
- The 4th root of 81 = 3 (because 3 x 3 x 3 x 3 = 81)
When the root is not a perfect integer, the result is an irrational number (non-terminating, non-repeating decimal).
Roots and Exponents
Any root can be expressed as a fractional exponent: x1/n. This is why your calculator computes nth roots using the power function. For example, the 5th root of 32 is 320.2 = 2.
Rules for Negative Numbers
- Odd roots of negative numbers are defined and negative (e.g., cbrt(-8) = -2).
- Even roots of negative numbers are not real numbers (e.g., sqrt(-4) is not a real number).
Applications of Nth Roots
- Geometry: Finding side lengths from area or volume (e.g., cube root of volume gives side length of a cube).
- Finance: Compound annual growth rate uses nth roots.
- Statistics: Geometric mean involves nth roots.
- Physics: Scaling laws often involve fractional powers and roots.
- Computer Science: Algorithm complexity analysis.