Skip to content
Popular Calculators
Browse Math calculators

Cube Root Calculator

Find the cube root of any number, including negatives, in exact simplified form where possible, or cube a number.

What do you want to work out?

About the Cube Root Calculator

The cube root of a number is the value that, multiplied by itself three times, gives that number. The cube root of 27 is 3, because 3 × 3 × 3 = 27.

Cube roots are better behaved than square roots in one important way: every real number has one, including negative numbers. The cube root of −8 is −2, because three negative factors leave a negative result. Square roots cannot do this — nothing real squares to a negative — which makes the cube root the more forgiving operation.

They are also less ambiguous. A positive number has two square roots, one positive and one negative. It has exactly one real cube root. There is never a second answer to remember.

This calculator finds the cube root of any number, gives the exact simplified radical where one exists, and cubes numbers going the other way.

How to Use the Cube Root Calculator

Find the cube root takes a number — positive, negative or zero — and returns its real cube root. Set the decimal places if six is not what you need.

Cube a number multiplies a value by itself three times. Handy for checking a root, and for volume work where cubing is the operation you want.

Press Calculate. You get the answer, the exact form, and a note saying whether the input was a perfect cube or the root is irrational.

How Cube Roots Are Calculated

Perfect cubes are found by recognition. Knowing the first ten makes most practical work immediate:

1³ = 1      2³ = 8      3³ = 27     4³ = 64     5³ = 125
6³ = 216    7³ = 343    8³ = 512    9³ = 729   10³ = 1000

Simplifying a radical works exactly as it does for square roots, except you pull out perfect cube factors rather than square ones:

54 = 27 x 2
∛54 = ∛27 x ∛2 = 3∛2

This relies on ∛(ab) = ∛a × ∛b. Any factor that is a perfect cube comes out from under the radical as a whole number.

As with square roots, take the largest cube factor. For 432 you might spot 8 × 54 and write 2∛54 — correct but unfinished, since 54 still contains 27. Taking 216 × 2 gives 6∛2 in one step.

Negatives need no special handling at all. The sign passes straight through:

∛(-54) = -∛54 = -3∛2

There is one trap in implementation worth naming. In most programming languages pow(x, 1/3) returns an error for negative x, because the general power function cannot tell that the exponent is an odd root. A dedicated cube-root function handles it correctly. This calculator uses the latter, which is why −8 gives −2 rather than an error.

Estimating works by bracketing. For ∛54: 3³ = 27 and 4³ = 64, so the answer lies between 3 and 4, and closer to 4 since 54 is nearer 64. The true value is 3.779763.

Cube Root Formula

∛(a x b) = ∛a x ∛b
∛(a / b) = ∛a / ∛b
∛(a³b)   = a∛b            the simplification rule
∛x x ∛x x ∛x = x
∛(x³)    = x              note: no absolute value needed
x^(1/3)  = ∛x

Compare that fourth-from-last line with its square-root equivalent. √(x²) = |x|, because squaring destroys the sign. ∛(x³) = x, with no absolute value, because cubing preserves it. That asymmetry is the whole difference between odd and even roots.

The general rule: odd roots are defined for every real number and give one answer. Even roots are defined only for non-negative numbers and give two.

Step-by-Step Example

Simplify ∛54.

Step 1 — look for perfect-cube factors. 54 divides by 27, which is 3³.

Step 2 — split it. 54 = 27 × 2.

Step 3 — take the root of each part. ∛27 = 3, and 2 has no cube factor, so it stays under the radical.

Step 4 — write it out. ∛54 = 3∛2.

Step 5 — check numerically. ∛2 ≈ 1.259921, and 3 × 1.259921 ≈ 3.779763, which matches the decimal answer.

Now a practical one. A cubic tank holds 2,000 litres. How long is each side?

Step 1: 2000 litres = 2 cubic metres
Step 2: side = ∛2 = 1.259921 metres
Step 3: check  1.259921³ = 2.000000 ✓

About 1.26 metres each way. Notice how little the side grows for a large volume — doubling the capacity of a cube lengthens each side by only about 26%, which is the cube root of 2. This is why large containers are so much more efficient than small ones, and why the relationship between size and volume surprises people.

Understanding Your Result

The answer is the real cube root, rounded to your chosen precision. There is only one, so there is no second value to keep in mind.

The exact form is the value without rounding. For a perfect cube it is a whole number. Otherwise it is a radical such as 3∛2, which is exact where the decimal is not. Carry this form through further working and convert at the end.

The type line says whether the number was a perfect cube or the root is irrational. Irrational here means the same as it does for square roots: the decimal runs forever without repeating.

A useful intuition from the numbers: cube roots grow very slowly. ∛1000 is 10, but ∛1,000,000 is only 100. Multiplying a volume by a thousand multiplies each dimension by ten.

When Should You Use This Calculator?

Volume to dimension. The side of a cubical container from its capacity, the edge of a cube-shaped package, the radius of a sphere from its volume.

Scaling in three dimensions. To double the volume of a model, each dimension multiplies by ∛2 ≈ 1.26, not by 2. Scaling every dimension by 2 gives eight times the volume.

Density and mass. Working back from a mass and density to a characteristic length.

Cubic equations. The general solution formula contains cube roots, including of negative quantities — which is exactly where the "every real number has one" property earns its keep.

Statistics. Some transformations use cube roots precisely because they handle negative values, where a square root or logarithm cannot.

Algebra homework. Questions asking for simplified radical form, where a decimal scores nothing.

Common Mistakes

Thinking a negative has no cube root. It does, and it is negative. ∛(−8) = −2. This is the single biggest difference from square roots and the most common misconception carried over from them.

Using pow(x, 1/3) in code. It returns NaN for negative x. Use a dedicated cube-root function, or handle the sign yourself and cube-root the magnitude.

Confusing cube root with dividing by three. ∛27 is 3, not 9. The two coincide at 27 by coincidence and nowhere else useful.

Stopping the simplification early. 2∛54 is correct but unfinished, because 54 still has a factor of 27. Always take the largest perfect cube.

Pulling out square factors instead of cube factors. ∛12 does not simplify, even though 12 has a factor of 4. For a cube root you need a factor that is a perfect cube, and 4 is not.

Assuming ∛(x³) needs an absolute value. It does not. That is a square-root rule. Cubing preserves the sign, so the cube root returns exactly what went in.

Scaling volume linearly. Doubling every dimension does not double the volume — it multiplies it by eight. Going the other way, doubling the volume needs each dimension multiplied by only 1.26.

Frequently Asked Questions

Why can a cube root be negative when a square root cannot?

Because multiplying three negatives together leaves a negative. Negative two cubed is negative eight, so the cube root of negative eight is negative two. Squaring cannot produce a negative, which is why square roots of negatives have no real answer and cube roots always do.

Does a number have more than one cube root?

Every real number has exactly one real cube root, unlike positive numbers which have two square roots. There are two further cube roots among the complex numbers, but in ordinary arithmetic the answer is unique, which makes cube roots simpler to work with.

What are the perfect cubes worth knowing?

The first ten are 1, 8, 27, 64, 125, 216, 343, 512, 729 and 1000. Recognising them makes estimating other cube roots straightforward, since you can bracket any number between two of them and interpolate.

How do I simplify a cube root?

Pull out any factor that is a perfect cube. The cube root of 54 becomes three times the cube root of two, because 54 is 27 times 2 and the cube root of 27 is three. The simplified form is exact, while the decimal is always rounded.

Where do cube roots come up in practice?

Anywhere volume is involved. Finding the side length of a cube from its volume, scaling a three-dimensional object, or working out a radius from a sphere's capacity all require undoing a cube. They also appear in the general solution of cubic equations.

Last reviewed September 17, 2026 by the CalculatorPeak editorial team.