Logarithms – How to Convert from Natural Log to Log Base 10

logarithms

The constraints of this question is related to a programming problem, but I must get the math right in order for it to be applied to code. The actual problem is I need a function that evaluates to log base 10 but all I have at my disposal is addition, subtraction, multiplication, division, a powering function, and a natual log function. Is there a way to effectively evaluate log base 10 with the given operations?

On a side note, I seem to remember having to do some division with logs in order to change the base, but it's been forever ago (who knew those college math classes would come in handy!)

Best Answer

You do not have to memorize the change of base formula:

Say you want to evaluate $\log_{a}(x)$. Let's call it $y$. Then:

$$\begin{align} y = \log_{a}(x) &\iff a^y = x \\ & \iff \ln(a^y) = \ln(x) \\ & \iff y \ln(a) = \ln(x) \\ &\iff y = \frac{\ln(x)}{\ln(a)}. \end{align}$$

This shows that $\log_{a}(x) = \frac{\ln(x)}{\ln(a)}$, but hopefully this also emphasizes that you need not memorize the change of base formula in order to use it.

Related Question