Tool to compute a cube root. The cube root for a number N, is the number that, multiplied by itself than again by itself, equals N.
Cube Root - dCode
Tag(s) : Symbolic Computation, Functions
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
The cube root of a number n is any number x solution of the equation: x3=n.
The cube root of n is denoted 3√n or n1/3.
The cube root is the inverse operation of cubing.
By default the cube root is assumed to be a real number, but there are always 3 solutions to the equation x3=n of which 2 are complex numbers.
Calculating a cubic root is not easy to do by hand except for usual values such as: 3√1=1, 3√8=2, 3√27=3, 3√64=4, 3√125=5, 3√1000=10
To calculate the complex roots of n, solve the equation x3=n in C which is equivalent to finding the complex roots of the degree 3 polynomial: x3−n=0
On a spreadsheet like Microsoft Excel, use the same formula as for a calculator, for a value in A1 write A1^(1/3) or POWER(A1;1/3)
The root simplifier will attempt to factor the expression under the root with a perfect cube.
Example: 3√8a=23√a (the 8 has been extracted from the root)
Simplification can be done manually in steps:
— Decompose the number into prime factors.
— Identify the perfect cubes among these factors.
— Remove these perfect cubes from the radical by extracting their cube root.
A cubic number is the cube of an integer (cubed value).
Example: 2 is an integer, 23=2×2×2=8 then 8 is a square number.
If the cube root of a number x is an integer (relative, without decimal part), then x is a cubic number.
The first perfect cubes are:
1^3 | 1 |
2^3 | 8 |
3^3 | 27 |
4^3 | 64 |
5^3 | 125 |
6^3 | 216 |
7^3 | 343 |
8^3 | 512 |
9^3 | 729 |
10^3 | 1000 |
Cube root of 1 is 1 because 3√1=113=1
However, in complex numbers, there are three cube roots of unity: 1, e2πi/3=−12+i√32 and e−2πi/3=−12−i√32
In some software, cbrt stands for cube root abbreviation cb of cube and rt for root, similar to sqrt for square root.
Example: cbrt(8)=2
The Unicode standard proposes the symbol U+221B ∛
In LaTeX language, write \sqrt[3]{x}
In programming languages, write cbrt(x) or x**(1/3)
dCode retains ownership of the "Cube Root" source code. Any algorithm for the "Cube Root" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Cube Root" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "Cube Root" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.
The content of the page "Cube Root" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source.
Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link:
In a scientific article or book, the recommended bibliographic citation is: Cube Root on dCode.fr [online website], retrieved on 2025-04-22,