What this tool calculates
The calculator reports two related values for a finite real input x: the real cube root of x and x cubed. A cube root answers “which real number, multiplied by itself three times, equals x?” The companion cube output is useful for checking scale and sign, although it is the cube of the input, not a re-cube of the displayed root.
Unlike an even root, a real cube root exists for every finite negative number. The sign is preserved: the cube root of a negative input is negative.
Inputs
Enter one finite real number. Integers, decimals, zero, and negative values are accepted. Scientific notation may be accepted by the numeric field, but the displayed result is formatted for readability and can round long decimals.
Clarify which operation you need. If the input is 8, the cube-root result is 2 while the cube result is 512. If you want to verify the root, cube the root value rather than reading the separate “Cube” field as that verification automatically.
Method and formula
The real cube root y of x satisfies:
y³ = x, so y = ∛x.
The implementation uses the platform's real cube-root operation, which handles the sign of negative values directly. The second output is:
cube = x³ = x × x × x.
For positive x, the root is positive. For zero it is zero. For negative x, odd-power symmetry gives ∛(−x) = −∛x. This avoids the not-a-real-number issue that appears when some general fractional-power expressions are applied to negative bases.
Worked example
Enter -8.
- The real cube root is -2, because (-2) × (-2) × (-2) = -8.
- The companion cube of the input is (-8)³ = -512.
Therefore the displayed pair is cube root -2 and cube -512. As a second check, entering 0 gives 0 for both outputs, while entering 27 gives a cube root of 3 and an input cube of 19,683.
How to interpret the result
Use the root when reversing a cubic relationship—for example, recovering a cube's edge length from a volume expressed in cubic units. If volume is 125 cubic centimetres, the edge is 5 centimetres because 5³ = 125. Keep unit dimensions explicit: the cube root of cubic metres is metres.
The cube output grows rapidly and is mainly a convenience for direct exponentiation. It should not be mistaken for the original input recovered from the displayed root.
Accuracy and limitations
Most non-integer roots cannot be represented exactly in binary floating-point, so the interface rounds the display. Cubing a rounded displayed root may differ slightly from the original number. Very large inputs can overflow when cubed, while extremely small magnitudes can lose visible precision.
The calculator works with real finite numbers only. It does not provide all three complex cube roots, symbolic radicals, exact rational simplification, uncertainty propagation, or unit conversion. For engineering work, retain sufficient significant figures and report measurement uncertainty separately.
Sources
- NIST Digital Library of Mathematical Functions, Powers provides reference definitions and principal-value context for powers and roots.
- NIST Guide for the Use of the International System of Units supports correct treatment and notation of measurement units when roots change dimensional powers.
Editorial record
Author: SoupCalc Editorial Team
Last reviewed: August 14, 2026
Review scope: Negative-root behavior, cube-versus-recube wording, floating-point limits, unit interpretation, reference links, and the −8 example were checked.