Cube Root Calculator

Compute ∛x for any real number—plus √x and —with live results, adjustable precision, quick examples, recent history, and a short number-line view.

Quick examples:

Cube root is defined for all real numbers. Results update as you type.

Enter a valid number for an instant result, use Calculate, or tap a quick example.

Prefer only square roots? Try the dedicated square root calculator.

What is a cube root?

The cube root of a number x is the value y such that y × y × y = x. We write y = ∛x. For example, ∛8 = 2 because 2³ = 8, and ∛27 = 3 because 3³ = 27. Unlike square roots, every real number has a real cube root: ∛(−8) = −2 because (−2)³ = −8. Cube roots appear when reversing volume formulas (side length from volume of a cube), in algebra when solving x³ = k, and in scaling laws where quantities grow with the third power.

How to calculate cube root manually?

For perfect cubes, factor the radicand into primes and group each prime in triples—each triple contributes one factor outside the root. Example: 216 = 2³ × 3³, so ∛216 = 2 × 3 = 6. For decimals or non-cubes, use Newton's method on f(y) = y³ − x: repeatedly replace y with y − (y³ − x)/(3y²) until the value stabilizes, or use logarithms: ∛x = sign(x) · e^((ln|x|)/3) for x ≠ 0. This calculator uses optimized Math.cbrt for speed and accuracy.

Cube root table (1–100)

Reference values for ∛n where n is a whole number from 1 to 100. Perfect cubes (1, 8, 27, 64) show exact integers; other entries are shown to six decimal places.

Cube roots from 1 through 100
n∛n
11
21.259921
31.442250
41.587401
51.709976
61.817121
71.912931
82
92.080084
102.154435
112.223980
122.289428
132.351335
142.410142
152.466212
162.519842
172.571282
182.620741
192.668402
202.714418
212.758924
222.802039
232.843867
242.884499
252.924018
262.962496
273
283.036589
293.072317
303.107233
313.141381
323.174802
333.207534
343.239612
353.271066
363.301927
373.332222
383.361975
393.391211
403.419952
413.448217
423.476027
433.503398
443.530348
453.556893
463.583048
473.608826
483.634241
493.659306
503.684031
513.708430
523.732511
533.756286
543.779763
553.802952
563.825862
573.848501
583.870877
593.892996
603.914868
613.936497
623.957892
633.979057
644
654.020726
664.041240
674.061548
684.081655
694.101566
704.121285
714.140818
724.160168
734.179339
744.198336
754.217163
764.235824
774.254321
784.272659
794.290840
804.308869
814.326749
824.344481
834.362071
844.379519
854.396830
864.414005
874.431048
884.447960
894.464745
904.481405
914.497941
924.514357
934.530655
944.546836
954.562903
964.578857
974.594701
984.610436
994.626065
1004.641589

FAQs

What is the cube root of a negative number?
The cube root of a negative number is negative. For example, ∛(−27) = −3 because (−3)³ = −27. Unlike square roots, cube roots are defined for every real number.
Is ∛x the same as x^(1/3)?
For real x, yes: raising x to the one-third power gives the real cube root. The calculator uses Math.cbrt, which correctly handles negatives (unlike some naive power formulas).
Why does ∛2 show a long decimal?
2 is not a perfect cube, so its cube root is irrational—it cannot be expressed as a fraction. The value shown is a high-precision decimal approximation; choose 2–10 decimal places above.
How accurate is this calculator?
Results use double-precision floating point (IEEE-754). You control display precision from 2 to 10 decimals; toggle scientific notation for very large or small magnitudes.