HomeMath › Radical Simplifier

Radical Simplifier

Writes √n or ∛n (optionally with a coefficient) in simplest radical form a√b by extracting perfect squares or cubes from the prime factorization of the radicand, and gives the decimal value.

When to use

You need √50 as 5√2, ∛54 as 3∛2, or want to know whether an integer is a perfect square or cube.

Do not use when: You only need the numeric value of a root (use nth-root), a root of a non-integer, or roots of degree 4 and higher.

Formula

n = Π pᵢ^eᵢ; ⁿ√n = (Π pᵢ^⌊eᵢ/k⌋) · ᵏ√(Π pᵢ^(eᵢ mod k)) for index k; for a negative radicand and k = 3 the sign moves outside

Inputs

ParameterTypeUnitRequiredDescription
radicandintegeryesInteger under the root sign (negative only with index 3). Range: ≥ -1000000000000, ≤ 1000000000000
indexintegerdefault 22 for a square root, 3 for a cube root. Range: ≥ 2, ≤ 3
coefficientintegerdefault 1Optional multiplier in front of the radical, e.g. 3 for 3√50. Range: ≥ -1000000, ≤ 1000000

Outputs

OutputTypeUnitDescription
simplifiedstringSimplest form such as '5√2', '3∛2', '-2∛3' or a plain integer when the radicand is a perfect power.
outside_coefficientintegerThe integer in front of the simplified radical (including the input coefficient and sign).
remaining_radicandintegerThe integer left under the root sign (1 when the root is exact).
decimalnumbercoefficient × n^(1/index).
is_perfect_powerbooleantrue when the root is an integer.
factorizationstringPrime-power form of |n|, e.g. '50 = 2 × 5^2'.
expressionstringe.g. '√50 = √(25 × 2) = 5√2'.

Example

√50: {"radicand":50,"index":2,"coefficient":1}{"simplified":"5√2","outside_coefficient":5,"remaining_radicand":2,"decimal":7.07106781,"is_perfect_power":false,"factorization":"50 = 2 × 5^2","expression":"√50 = √(25 × 2) = 5√2"}

∛54: {"radicand":54,"index":3}{"simplified":"3∛2","outside_coefficient":3,"remaining_radicand":2,"decimal":3.77976315,"is_perfect_power":false,"factorization":"54 = 2 × 3^3","expression":"∛54 = ∛(27 × 2) = 3∛2"}

GET https://tttkmbb.com/api/v1/calculate/simplify-radical?radicand=50&index=2&coefficient=1

Machine access

Sources

FAQ

What does 'simplest radical form' mean?

The radicand contains no factor that is a perfect square (for √) or perfect cube (for ∛): √50 = √(25 × 2) = 5√2, because 25 is the largest square factor of 50.

Why is the square root of a negative number rejected?

√−n is imaginary (i√n), not a real radical; only odd roots of negative numbers are real, e.g. ∛−54 = −3∛2.

Related calculators