Root Calculator
Our free arithmetic calculator solves root problems. Get worked examples, visual aids, and downloadable results. Enter your values for instant results.
Reviewed for accuracy by Manoj Kumar, Mathematics Educator
Root Calculator
Calculator
Adjust values & calculateEnter your values below. Every result is computed in your browser — no data is sent to any server.
Formula: n-th root of x = x^(1/n)
Worked example — The cube root of 27 is exactly 3, a perfect cube.
Formula
n-th root of x = x^(1/n)
The nth root of a number x is a value r where r^n = x. It is equivalent to raising x to the power 1/n. For n = 2 (square root), n = 3 (cube root), and so on. Even roots of negative numbers are not real; odd roots of negative numbers are negative real numbers.
Worked Examples
Example 1: Cube Root of 27
Problem:Calculate the cube root of 27 and verify the result.
Solution:Cube root of 27 = 27^(1/3) = 3 Verification: 3^3 = 3 x 3 x 3 = 27 27 = 3^3, so this is a perfect cube. As exponent form: 27^(1/3) = 27^0.333333
Result:The cube root of 27 is exactly 3, a perfect cube.
Example 2: Fourth Root of 625
Problem:Find the fourth root of 625.
Solution:Fourth root of 625 = 625^(1/4) 625 = 5^4 = 5 x 5 x 5 x 5 So 625^(1/4) = 5 Verification: 5^4 = 625 Alternatively: sqrt(sqrt(625)) = sqrt(25) = 5
Result:The fourth root of 625 is exactly 5.
Frequently Asked Questions
What is a root in mathematics?
A root (or radical) is the inverse operation of exponentiation. The nth root of a number x is a value r such that r raised to the nth power equals x. The most common root is the square root (n = 2), which asks what number multiplied by itself gives x. For example, the square root of 25 is 5 because 5 times 5 equals 25. The cube root (n = 3) asks what number cubed gives x: the cube root of 8 is 2 because 2 times 2 times 2 equals 8. Roots can be expressed using radical notation or as fractional exponents, where the nth root of x equals x raised to the power 1/n.
What is the difference between square roots and cube roots?
Square roots and cube roots differ in degree and behavior with negative numbers. The square root finds a value that when multiplied by itself gives the original number, while the cube root finds a value that when used as a factor three times gives the original number. A critical difference is that square roots of negative numbers do not exist in the real number system (they produce imaginary numbers), while cube roots of negative numbers are perfectly valid real numbers. For instance, the cube root of -8 is -2 because (-2) times (-2) times (-2) equals -8. Additionally, every positive number has two square roots (positive and negative), but only one real cube root.
How do you calculate nth roots without a calculator?
Several methods exist for manual root calculation. For square roots, the long division method groups digits in pairs and iteratively finds each digit of the result. Newton's method (also called the Babylonian method for square roots) uses the iterative formula: next guess = (current guess + number / current guess) / 2. This converges very quickly. For example, to find the square root of 50, start with guess 7: (7 + 50/7) / 2 = 7.071, which is already accurate to three decimal places. For nth roots, the generalized Newton formula is: next = ((n-1) times current + number / current^(n-1)) / n. Estimation using perfect powers as reference points also helps narrow down the answer.
What are perfect squares, cubes, and higher perfect powers?
A perfect square is an integer that is the square of another integer, such as 1, 4, 9, 16, 25, 36, 49, 64, 81, and 100. A perfect cube is an integer that is the cube of another integer: 1, 8, 27, 64, 125, 216, 343, 512, 729, and 1000. Higher perfect powers follow the same pattern. Perfect fourth powers include 1, 16, 81, 256, and 625. Recognizing perfect powers helps simplify radical expressions. For example, the square root of 72 can be simplified as the square root of 36 times 2, which equals 6 times the square root of 2. This simplification technique is essential in algebra and higher mathematics.
How are roots used in science and engineering?
Roots appear throughout scientific and engineering calculations. In physics, the root mean square (RMS) velocity of gas molecules uses square roots of average squared velocities. The period of a pendulum involves the square root of its length divided by gravitational acceleration. In electrical engineering, impedance calculations require square roots of sums of squared resistance and reactance. Structural engineers use cube roots when calculating beam deflections. In statistics, standard deviation is the square root of variance. The inverse square law in physics (gravity, light intensity, electromagnetic radiation) involves square root relationships. Even in finance, compound annual growth rate calculations use nth roots.
What is the relationship between roots and fractional exponents?
Every root can be expressed as a fractional exponent, providing a powerful notational equivalence. The nth root of x equals x^(1/n). This means the square root of x is x^(1/2), the cube root is x^(1/3), the fourth root is x^(1/4), and so on. This equivalence extends further: the nth root of x^m equals x^(m/n). For example, the cube root of x squared is x^(2/3). This fractional exponent notation follows all standard exponent rules, making algebraic manipulation easier. You can multiply, divide, and raise powers normally. For instance, x^(1/2) times x^(1/3) equals x^(5/6), meaning the square root times the cube root equals the sixth root of x^5.
Can you simplify radical expressions?
Yes, radical expressions can often be simplified by factoring out perfect powers. The key principle is that the nth root of a product equals the product of the nth roots. To simplify the square root of 200, factor 200 as 100 times 2, then the square root of 100 times the square root of 2 equals 10 times the square root of 2. For cube roots, the cube root of 54 = cube root of 27 times 2 = 3 times the cube root of 2. You can also rationalize denominators: 1 divided by the square root of 3 equals the square root of 3 divided by 3. Addition and subtraction of radicals requires like radical parts, similar to combining like terms in algebra.
What are imaginary and complex roots?
When taking an even root of a negative number, the result is not a real number but an imaginary number. The imaginary unit i is defined as the square root of -1. So the square root of -4 is 2i, and the fourth root of -16 involves complex numbers. Complex roots always come in conjugate pairs: if a + bi is a root, then a - bi is also a root. This is guaranteed by the fundamental theorem of algebra, which states that every polynomial of degree n has exactly n roots in the complex number system. Complex roots are essential in electrical engineering for analyzing AC circuits, in quantum mechanics for wave functions, and in signal processing for frequency analysis.
How does Newton's method find roots iteratively?
Newton's method, also called Newton-Raphson, is an iterative algorithm that converges rapidly to a root. For finding the nth root of a number A, start with an initial guess x0, then repeatedly apply: x_next = ((n-1) times x_current + A / x_current^(n-1)) / n. Each iteration roughly doubles the number of correct digits, a property called quadratic convergence. For square roots, this simplifies to the Babylonian method: x_next = (x_current + A / x_current) / 2. Starting with guess 2 for the square root of 10: iteration 1 gives 3.5, iteration 2 gives 3.17857, iteration 3 gives 3.16228, which matches the true value to 5 decimal places. This algorithm is still used in modern computer hardware for floating-point root calculations.
What are principal roots versus all roots?
Every positive number technically has multiple nth roots, but the principal root is the unique positive real root. For square roots, 9 has two square roots: +3 and -3, but the principal square root is +3. For cube roots, the principal root is the real root (positive for positive numbers, negative for negative numbers). For nth roots in the complex plane, every nonzero number has exactly n distinct nth roots, equally spaced around a circle in the complex plane. These are called the roots of unity when applied to the number 1. For example, the cube roots of 1 are 1, -1/2 + i*sqrt(3)/2, and -1/2 - i*sqrt(3)/2. In standard mathematical notation, the radical symbol always denotes the principal root.
References
Reviewed for accuracy by Manoj Kumar, Mathematics Educator · Editorial policy
Related Calculators
🧮Complex Root Calculator
Calculate complex root with inputs, formulas, and instant results.
🧮Polynomial Root Finder
Calculate polynomial root finder with inputs, formulas, and instant results.
🧮Cube Root Calculator
Calculate cube root with inputs, formulas, and instant results.
🧮Digital Root Calculator
Calculate digital root with inputs, formulas, and instant results.
🧮Root Mean Square Calculator
Calculate root mean square with inputs, formulas, and instant results.
🧮Square Root Calculator
Calculate square root with inputs, formulas, and instant results.
🧮Annulus Area Calculator
Calculate annulus area with inputs, formulas, and instant results.
🧮Area Calculator
Calculate area with inputs, formulas, and instant results.