Online Tool for Approximating the n-th Root

This algorithm provides an approximate solution for computing the n-th root of a number. Simply specify the root index, the radicand, an initial estimate, and the acceptable error margin (tolerance).

Compute the n-th root of N










This algorithm is based on the generalized Newton’s method: \[ x_{k+1} = \frac{1}{n} \cdot \left( (n - 1) \cdot x_k + \frac{A}{x_k^{n - 1}} \right) \] Where:

  • \( x_k \) is the current approximation
  • \( x_{k+1} \) is the next approximation
  • \( A \) is the number whose n-th root is being calculated
  • \( n \) is the degree of the root
The initial value \( x_0 \) can be any non-zero number.

For a detailed explanation of the algorithm, see this page.

 
 

Please feel free to point out any errors or typos, or share suggestions to improve these notes. English isn't my first language, so if you notice any mistakes, let me know, and I'll be sure to fix them.

FacebookTwitterLinkedinLinkedin
knowledge base

Numerical Calculation

 Tools