Root Calculator

Modern Root Calculator

Calculate the square root, cube root, or any other integer root of a number.

Understanding n-th Roots — From Definition to Hand-Calculation Tips

Quick recap:
The n-th root of a positive number a is the single positive value b that, when raised to the power n, recreates a.
 \( b^n = a\quad\Longleftrightarrow\quad b=\sqrt[n]{,a,}\)

Below you’ll find a refreshed, reader-friendly guide that

  1. defines square, cube, and general n-th roots,

  2. walks through a “no-calculus” pencil-and-paper procedure for finding them, and

  3. gives fully-worked numeric examples you can copy in class or the kitchen.


1 What do we mean by “root”?

NameSymbolVerbal read-outEquation
Square root\( \sqrt{a}, \)“root of a” (power 2)\( b^2=a \)
Cube root\( \sqrt[3]{a} \)“cube root” (power 3)\( b^3=a \)
n-th root\( \sqrt[n]{a} \)n-th root”\( b^n=a \)

Roots answer the inverse question of exponentiation: “What base, repeated n times, rebuilds my number?”


2 Why roots matter

  • Geometry – side length of a square with area A is \( \sqrt{A}\).

  • Finance – annual compound growth rate for n years is \( \sqrt[n]{\text{total multiplier}} – 1\).

  • Chemistry & Physics – reaction half-life, RMS voltage, sound intensity averages all hide a root.


3 A pencil-and-paper algorithm (no calculus required)

The time-honoured approach is a special case of Newton’s method. For square roots it often goes by the Babylonian method; for higher powers we tweak the averaging step.

3.1 Square root steps

  1. Guess a starting value \(b\).

  2. Divide: \(c = a / b\).

  3. Average: \(b_{\text{new}} = (b + c)/2\).

  4. Loop to step 2 until the digits stop changing at your desired precision.

<div style=”margin-top:0.5em”></div>

Example – √27 (to 3 decimals)

Stepb (guess)c = 27 / bNew average
15.1255.2685.1965
25.19655.19605.1962
35.19625.19625.196

 Final answer ≈ 5.196.


3.2 General n-th root steps

  1. Guess \(b\).

  2. Divide: \(c = a / b^{,n-1}\).

  3. Average \[ b_{\text{new}} ;=; \frac{(n-1),b + c}{n} \]

  4. Repeat step 2 until stable.

<div style=”margin-top:0.5em”></div>

Example – 8-th root of 15 (to 3 decimals)

Stepbc = 15 / b⁷New average
11.4321.4051.388
21.3881.4031.402
31.4021.4031.403

 Rounded to three decimals, \( \sqrt[8]{15} \approx 1.403 \).

Why it works: each cycle corrects the guess by the slope of \(x^n-a\); mathematically this is Newton-Raphson, but you only need division and averaging on paper.


4 Handy reference table (perfect roots)

aa³√a⁴√a
421.5871.414
82.82821.682
1642.5202
275.19632.279
325.6573.1742.378
64842.828
8194.3273

(Values rounded to 3 dp where necessary.)


5 Calculator-free tips & tricks

SituationShortcut
Area → sideEstimate by bracketing the perfect squares surrounding the area. 81 cm² means the side is just under 9 cm.
Large nConvert to scientific notation: ⁸√(3.2 × 10⁷) = ⁸√3.2 × 10^(7/8).
Back-of-envelope growthDoubling time ≈ ln 2 / ln (1+rate) uses natural logs (another inverse function!) instead of roots.

Key takeaways

  • Roots undo powers.

  • The Babylonian/Newton averaging trick converges fast—even on a scratch pad.

  • The same template works for any exponent after you adjust the averaging formula.

  • Mastering a few perfect powers lets you ball-park answers in your head before you ever hit the button.

Scroll to Top