Math calculator

Cube Root Calculator

Cube roots exactly, negatives included — and the two complex roots nobody mentions.

Cube root, exactly

Negatives included.

∛54

3∛2

3.779763149684 to 12 places.

Exact form

3∛2

simplified

Decimal

3.779763149684

irrational — a truncation

Prime factors

2 × 3³

a cube root needs three of a prime to release one

Real roots

1 of 3

the other two are complex

The estimate to make first

54 sits between 27 and 64, so its cube root is between 3 and 4.

The other two cube roots

  • 3∛2 × (−1 + i√3)/2
  • 3∛2 × (−1 − i√3)/2

Every non-zero number has three cube roots, evenly spaced 120° apart on a circle. One is real — the answer above — and the other two are a complex conjugate pair, each the real root multiplied by a primitive cube root of unity. Those two are exactly (−1 ± i√3)/2, whatever the number was.

How the decimal was found

Newton’s method converging on the cube root
StepGuessNext guess
1100.0000000066.66846666
266.6684666644.44969422
344.4496942229.64223982
429.6422398219.78197889
519.7819788913.23398330
613.233983308.92543144
78.925431446.17623852

Newton’s method for a cube root weights the old guess twice and the correction once, which is where the 2 and the 3 in the formula come from.

  • 2 × 3³ contains a triple of 3s. A cube root needs THREE of a prime to release one — where a square root needs two.
  • A cube root that is not a whole number is irrational, so the decimal below never terminates and never repeats.

The surd comes from the prime factorisation; the decimal is a separate integer computation.

What this tool shows

A negative number has a real cube root, unlike a square root: (−3)³ is −27. And every non-zero number has three cube roots, of which the other two are always the real one times (−1 ± i√3)/2.

  • The exact cube root in simplest surd form
  • Negative radicands, which have real cube roots
  • The two complex roots, written exactly
  • Whether the number is a perfect cube
  • The decimal to up to sixty places
  • The two perfect cubes it sits between
Exact surd form Negatives are real answers All three roots given Integer Newton, sixty places

Exact surd form; decimal computed on integers.

Updated 7 September 2026 · Works in any browser, no installation

A cube root releases one copy of a prime for every THREE under the sign, where a square root needs two. 54 is 2 × 3³, so the three 3s come out as a single 3 and the 2 stays: ∛54 = 3∛2. And unlike a square root, a negative number has a real answer — ∛−27 is −3, because multiplying three negatives leaves a negative.

At a glance

Formula shown
\u221bn pulls out every group of THREE equal primes: \u221b(2 \u00d7 3\u00b3) = 3\u221b2. For a negative n the real root is negative, because an odd number of sign flips leaves a negative. The three roots are r, r\u00b7(\u22121 + i\u221a3)/2 and r\u00b7(\u22121 \u2212 i\u221a3)/2.
Scenario support
Finding a side length from a volume; scaling a shape by volume rather than by length; solving a depressed cubic where Cardano needs a cube root.
Educational estimate
Planning support from the values you enter — not professional advice.

Why a negative has a real cube root

(−3) × (−3) is 9, and 9 × (−3) is −27. Three negatives leave a negative, because they cannot pair off — one is always left over.

That is the whole difference an odd index makes. An even root of a negative has no real value because any real number squared is positive; an odd root has one for exactly the opposite reason.

So ∛−27 = −3 with no complex numbers involved, and ∛−54 = −3∛2. A tool that refuses these has reused square-root logic where it does not apply.

Three roots, not one

Every non-zero number has three cube roots, evenly spaced 120° apart on a circle in the complex plane. One is real; the other two are a conjugate pair.

They are not mysterious. The other two are always the real root multiplied by (−1 + i√3)/2 and (−1 − i√3)/2 — the primitive cube roots of unity, which are the same two numbers whatever you started with.

“The” cube root means the real one by convention. That convention matters in Cardano’s formula, where taking the principal cube root at each step does not always give the real answer you wanted — the pairing between the two cube roots has to be respected.

Threes, not pairs

The simplification rule is the same shape as for square roots with one number changed: a cube root needs THREE of a prime to release one, not two.

So 8 = 2³ comes out whole, while 4 = 2² does not come out at all — two 2s are not enough. That is the difference that makes ∛4 irrational where √4 is 2.

It also means perfect cubes are much rarer than perfect squares. There are 31 squares below 1000 and only 10 cubes, so most cube roots you meet will be irrational.

Doubling the cube

One of the three classical Greek construction problems: given a cube, build one with twice the volume using only straightedge and compass. That needs a length of ∛2 times the original.

It is impossible, and the reason is exactly the kind of fact theRational Zeros Calculator establishes: x³ − 2 has no rational root, so it is irreducible over the rationals, and a degree-3 irreducible polynomial has no root constructible with straightedge and compass — those build only degrees that are powers of two.

The proof took two thousand years to find and is about a page long. ∛2 ≈ 1.2599 is perfectly computable; it is just not constructible.

Cube roots in real use

Volume to side. A tank holding 1000 litres as a cube is 10 units on a side. Any question that starts from a volume and wants a length is a cube root.

Scaling. Doubling every length multiplies volume by eight; to double the volume you multiply lengths by ∛2 ≈ 1.26. That gap is why a scale model’s weight is so far from what its size suggests.

Solving cubics. Cardano’s formula is built from two cube roots, which is why the Cubic Equation Calculator exists and why it has to be careful about which cube root it takes.

How the decimal is found

The same Newton iteration as for square roots, with the weights changed: the new guess is (2x + n/x²) / 3 rather than (x + n/x) / 2. The 2 and the 3 come from the index.

It still converges quadratically, so the correct digits roughly double each step and seven steps cover the sixty places this page will print.

As on the square-root page, the iteration runs on whole numbers scaled by a power of ten rather than on floating point, so nothing is lost past the seventeenth digit — and the result is checked by cubing it back.

Sources and methodology

The results here are classical; these are where they are set out.

Method. The radicand is factorised and every complete triple of a prime is pulled out. The decimal is computed separately by Newton iteration on integers scaled by a power of ten. Sign is handled before either: an odd index preserves it, so the whole calculation runs on the absolute value and the sign is restored at the end. That engine is verified on every change against 68 hand-written assertions, including that every simplified radical at indices two to five multiplies back to its radicand exactly, and that ∛−27 returns −3 rather than refusing. The count and the per-case breakdown are published on the formula verification page.

Related calculators

Where this goes next:

Square RootThe exact square root first — 72 gives 6 root 2 — then the decimal to as many as sixty places, computed on whole numbers rather than a double.
Simplify RadicalsSimplest radical form at any index from 2 to 12 with a coefficient in front, shown prime by prime, plus the rationalised denominator.
ExponentPowers with the awkward cases right — a negative exponent is a reciprocal not a sign, a fractional one is a root, and zero to the zero is reported as contested.
Complex RootAll n roots of any complex number by De Moivre, exact wherever a root is a Gaussian rational, arranged as the regular n-gon they form, with the sum and product checked.
Prime FactorizationBreak any number into primes with the division ladder shown, the number of trial divisions reported, and the argument for why the search can stop at the square root.
Cubic EquationSolve any cubic exactly when it has a rational root — deflate and finish with the quadratic formula — and by the trigonometric form when it does not, with the discriminant saying which case you are in.

More in Math, or browse all calculators.

Read the guide

Square roots, where a negative has no real answer, are on the Square Root Calculator. For a coefficient in front or a higher index, the Simplify Radicals Calculator handles the general case.

Educational use disclaimer

This is an educational tool. The surd form is exact; the decimal is a truncation wherever the root is irrational, and the page says which case applies.

How we calculate · Found an error? email us

Authorship & verification

Written and maintained by , a business operator who builds spreadsheet-based calculators.

What's changed (3 updates)

Published 7 September 2026

  1. Published the cube root page. The difference from a square root is the sign: an odd index means a negative number has a REAL cube root, which a page reusing square-root logic gets wrong.
  2. The two complex roots are given rather than omitted — they are always the real root times (minus 1 plus or minus i root 3) over 2, whatever the number was.
  3. Simplification needs THREE of a prime to release one, where a square root needs two; the page shows that division per prime.

Add this calculator to your site

Responsive embed — and private: nothing your visitors type leaves their browser.