Cube Root Calculator (∛n)
∛n with perfect-cube detection, simplified surd form, and decimal expansion.
Result
Loading calculator…
—
How to use this calculator
- Enter any real number (positive or negative).
- Read decimal + simplified surd.
About this calculator
The cube root of n is the value x where x³ = n. Unlike square roots, cube roots accept negative inputs (∛(−8) = −2). Perfect cubes: 1, 8, 27, 64, 125, …. Simplified surd: ∛54 = ∛(27 × 2) = 3∛2. JavaScript provides Math.cbrt which handles negatives correctly and runs fast on hardware. Useful in geometry (volume of a cube of size x = x³), finance (annualized growth from a 3-period total), and music (frequency ratios).
Frequently asked
Why does cube root accept negatives?+
Odd functions: y = x³ is one-to-one over all reals. (−2)³ = −8, so ∛(−8) = −2. Square root only defined for non-negatives in real domain.
Perfect cube examples?+
8 (=2³), 27 (=3³), 64 (=4³), 125 (=5³), 216 (=6³), 343 (=7³), 512 (=8³), 729 (=9³), 1000 (=10³).
How is it computed?+
Math.cbrt uses Newton iteration internally. Hardware-supported on most modern CPUs.
Surd simplification?+
Find the largest k where k³ divides n. ∛54 = ∛(27×2) = 3∛2.
When is cube root used?+
Volume → side: cube with volume V has side ∛V. Annualized growth from 3-period total: r = ∛(end/start) − 1.
Related calculators
Square Root Calculator (√n)
√n with integer-perfect-square check, simplified surd form, and decimal expansion.
Scientific Notation Converter
Convert decimal ↔ scientific notation. Standard form a × 10^b with 1 ≤ |a| < 10.
Prime Factorization Calculator
n = p₁^a₁ × p₂^a₂ × … Trial division to find all prime factors with multiplicity.
Factorial Calculator (n!)
n! = 1 × 2 × … × n. Computes exactly up to 21! (number limit); approximate via Stirling for larger.
GCD (Greatest Common Divisor) Calculator
Euclidean algorithm: gcd(a,b) = gcd(b, a mod b). Supports 2-6 integers.
Prime Number Checker
Is n prime? Trial division up to √n; identifies smallest divisor and nearest primes if composite.