-1

I have tries solving by taking log on both the sides, but was unsuccessful. Please upgrade my knowledge.

1 Answers1

1

We have $$n^n=10^{(10^{10})}\\ n \log_{10}n=10^{10}$$ Now without the Lambert W function you won't get an exact solution. Alpha gives $n = e^{W(10000000000 \log(10))} \approx1.1$ billion. You can find the numeric value by iteration. We can guess that $n$ is about $1$ billion, then iterate $n=\frac {10^{10}}{\log_{10} n}$ to convergence. We choose that form because $\log_{10}n$ is slowly varying, so the convergence will be rapid.

Ross Millikan
  • 374,822