Cube Root
The cube root of a number is the value that, when multiplied by itself three times, gives that number.
Formula
\sqrt[3]{n} = x \text{ means } x^3 = n
Definition
The cube root of a number is what you multiply by itself three times to get that number, written with a small $3$ inside the radical sign. Formally, the cube root of $n$ is the real number $x$ such that $x^3 = n$, written $\sqrt[3]{n}$ or $n^{1/3}$; unlike square roots, cube roots exist for negative numbers, since $\sqrt[3]{-8} = -2$ because $(-2)^3 = -8$, and every real number has exactly one real cube root. The function $x^{1/3}$ is continuously differentiable for $x \neq 0$, with $\frac{d}{dx}(x^{1/3}) = \frac{1}{3}x^{-2/3}$; in the complex plane, every non-zero $z$ has three cube roots, $|z|^{1/3} e^{i(\arg(z)+2\pi k)/3}$ for $k = 0, 1, 2$, forming the vertices of an equilateral triangle.
Example
The cube root of $8$ is $2$, since $2 \times 2 \times 2 = 8$; the cube root of $27$ is $3$. $\sqrt[3]{125} = 5$, $\sqrt[3]{-27} = -3$, $\sqrt[3]{10} \approx 2.154$ (irrational), and simplifying $\sqrt[3]{54} = 3\sqrt[3]{2}$ since $54 = 27 \times 2 = 3^3 \times 2$. The cube roots of unity are $1$, $e^{2\pi i/3} = -1/2 + i\sqrt{3}/2$, and $e^{4\pi i/3} = -1/2 - i\sqrt{3}/2$, whose sum is $0$ and product is $1$.
Key Insight
The cube root is the side length of a cube with the given volume: a cube with volume $64$ cubic units has side length $4$, since $4^3 = 64$. It is also an odd function, $\sqrt[3]{-x} = -\sqrt[3]{x}$, because $(-x)^3 = -(x^3)$. The $n$-th roots of unity are evenly spaced on the unit circle in the complex plane, a geometric picture that underlies the discrete Fourier transform and explains why FFT algorithms are structured as they are.