Fourth Root Calculator

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).

For negative numbers, the fourth root is not real (complex). We only show real principal root.
∜16 = 2
∜81 = 3
∜1 = 1
∜0 = 0
∜625 = 5
∜10000 = 10
Privacy first: All calculations are performed locally. No data is sent to any server.

What is a fourth root?

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\))

Why use an interactive fourth root calculator with visualization?

  • Intuitive understanding: The nested squares show the relationship between \(x\), \(\sqrt{x}\), and \(\sqrt[4]{x}\) at a glance.
  • Educational aid: Perfect for learning about fractional exponents and radical simplification.
  • Engineering & physics: Fourth roots appear in formulas for bending stress, vibration periods, and radiation intensity.
  • Quick reference: Get accurate results up to 15 decimal places for any non‑negative real number.

How we calculate the fourth root

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.

Step‑by‑step example

  1. Enter \(x = 16\).
  2. First square root: \(\sqrt{16} = 4\).
  3. Second square root: \(\sqrt{4} = 2\).
  4. Thus \(\sqrt[4]{16} = 2\).
  5. The nested squares: outer square area = 16 (side 4), inner square area = 4 (side 2).

Common fourth roots (perfect fourth powers)

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⁴
Case Study: Vibration Frequency of a Beam

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.

Properties and identities

  • \(\sqrt[4]{ab} = \sqrt[4]{a}\,\sqrt[4]{b}\) for \(a,b \ge 0\).
  • \(\sqrt[4]{\frac{a}{b}} = \frac{\sqrt[4]{a}}{\sqrt[4]{b}}\) (\(b>0\)).
  • \(\sqrt[4]{x^n} = x^{n/4}\) (if \(x \ge 0\) and \(n\) integer).
  • The fourth root function is increasing and concave for \(x>0\).

Common misconceptions

  • The fourth root of a negative number is negative: No, in the real number system there is no real number whose fourth power is negative. The fourth root of a negative is a complex number (involving \(i\)).
  • \(\sqrt[4]{x^4} = x\) for all real x: Actually, \(\sqrt[4]{x^4} = |x|\) because the principal root is non‑negative.
  • Fourth roots are just square roots applied twice: That's true for non‑negative numbers, but careful with signs.

Applications in science and engineering

  • Stefan–Boltzmann law: Radiated power \(P \propto T^4\), so temperature \(T \propto P^{1/4}\).
  • Fluid dynamics: In pipe flow, the Darcy‑Weisbach friction factor appears in fourth‑root expressions.
  • Geometry: The side length of a square with area \(A\) is \(\sqrt{A}\); the side of a square with that side as area is \(\sqrt[4]{A}\).

Based on authoritative mathematical sources – This tool follows the standard definition of real fourth roots as given in textbooks and references such as Stewart's Calculus. The nested‑square visualization is an original way to make the concept tangible. All calculations use IEEE 754 double‑precision arithmetic. Last updated March 2026.

Frequently Asked Questions

In the real number system, there is no real fourth root of a negative number because any real number raised to the fourth power is non‑negative. The fourth roots of a negative number are complex (involving the imaginary unit \(i\)). For example, \(\sqrt[4]{-16} = \pm 2i\). This calculator focuses on real numbers and shows a warning for negative inputs.

\(\sqrt[4]{x^8} = x^{8/4} = x^2\). Since the exponent 8/4 = 2 is even, the result is always non‑negative if \(x\) is real, so \(\sqrt[4]{x^8} = x^2\) without absolute value (because \(x^2 \ge 0\)).

The fourth root of \(x\) equals the square root of the square root of \(x\): \(\sqrt[4]{x} = \sqrt{\sqrt{x}}\). This holds for \(x \ge 0\).

Absolutely. For example, \(\sqrt[4]{0.0081} = 0.3\) because \(0.3^4 = 0.0081\). The nested squares still work (the outer square area is 0.0081, inner square area 0.09, side 0.3).

The calculations use double‑precision floating point (IEEE 754), which gives about 15 decimal digits of accuracy. Results are displayed rounded to 4 decimal places, but the full precision is used internally.

The double‑step square root method handles very large numbers well (up to about \(10^{308}\)). Beyond that, the number is out of range for JavaScript numbers (Infinity).
References: Wikipedia: nth root; Stewart, J. "Calculus: Early Transcendentals" (8th ed.), Cengage Learning.