Calculating the $n$th root of a number using logarithms

1.1k Views Asked by At

Supposedly, you can calculate the $n^{\text{th}}$ root of any number using logarithms. Where you find the log of the number under the radicand, divide that by $n$ and take the antilog of that.

I tried that with $\sqrt[5]{37}$, and something went wrong because I got an output of approximately $5$ even though Wolfram Alpha says it's about $2.0589\ldots$.

The code I entered into WolframAlpha was AntiLog(Log(37)/5).

Question: What went wrong, and what is the correct way to do this?

EDIT: If possible, could you also include a website or pdf or something where you can look up $\log(x)$ and $\text{antilog}(x)$.

1

There are 1 best solutions below

2
On BEST ANSWER

Wolfram Alpha says it's "Assuming "Log" is the natural logarithm." If you try $e^{\log(37)/5}$, you'll get what you're expecting.