Formula for the $n^{th}$ root of $n$?

702 Views Asked by At

Is there a general formula $r(n)$ to calculate the nth root of $n$, for any complex, irrational, real, etc. $n$?

Sorry for formatting, I’m on mobile.

3

There are 3 best solutions below

3
On BEST ANSWER

There is nothing specific to $\sqrt[n]n$ compared to $\sqrt[n]m$.

A general formula is

$$\sqrt[n]m=e^{(\log m)/n}.$$

4
On

The big difference is between

  • natural, integer, rational, real numbers: for $n>0$ we have that $m=\sqrt[n] n$ is the unique value such that $m^n=n$
  • complex number: the solution is not unique, for example for $n>0$ integer $m=\sqrt[n] n$ has $n$ distinct solutions
1
On

You can use Newtons Method to find nth roots recursively to an arbitrary precision.