Compute the real fourth root (∜x) of any non‑negative number. Visualize the meaning through nested squares: the outer square has area = x (side = √x); the inner square has area = √x (side = ∜x).
The fourth root of a number \(x\) is a number \(r\) such that \(r^4 = x\). It is denoted as \(\sqrt[4]{x}\) or \(x^{1/4}\). For non‑negative real numbers, the principal fourth root is always non‑negative. Geometrically, if you construct a square with side \(r\), its area is \(r^2\); then construct another square with side \(r^2\), its area is \(r^4 = x\). Hence the fourth root can be seen as the side of the inner square when the outer square has area \(x\).
\(\sqrt[4]{x} = \sqrt{\sqrt{x}} = x^{1/4}\)
\((x^{1/4})^4 = x\) (for \(x \ge 0\))
We use the built-in JavaScript Math.sqrt function twice: \(\sqrt[4]{x} = \sqrt{\sqrt{x}}\). This is mathematically equivalent for \(x \ge 0\). For very large or very small numbers, double square root avoids overflow issues. The result is rounded to 4 decimal places for display, but the internal precision is double‑precision floating point (approx. 15 decimal digits).
If you enter a negative number, the calculator shows a warning because the real fourth root does not exist (it would be a complex number). For zero, the fourth root is zero.
| x (perfect fourth power) | ∜x | Factorization |
|---|---|---|
| 0 | 0 | 0⁴ |
| 1 | 1 | 1⁴ |
| 16 | 2 | 2⁴ |
| 81 | 3 | 3⁴ |
| 256 | 4 | 4⁴ |
| 625 | 5 | 5⁴ |
| 1296 | 6 | 6⁴ |
| 2401 | 7 | 7⁴ |
| 4096 | 8 | 8⁴ |
| 6561 | 9 | 9⁴ |
| 10000 | 10 | 10⁴ |
In mechanical engineering, the natural frequency of a uniform cantilever beam is proportional to \(\sqrt{\frac{EI}{\mu L^4}}\), where \(L\) is length. Rearranging, the frequency depends on \(L^{-2}\). To find the length that doubles the frequency, you need to solve \(L^{-2} \propto 2\) → \(L \propto 1/\sqrt{2}\). If the design requires a specific frequency ratio, fourth roots may appear when dealing with fourth‑power moments of inertia. This tool helps quickly evaluate such relationships.