Two questions about logarithms

144 Views Asked by At

I have two questions about logarithms that have been bugging me for years:

The first is regarding natural log. The domain of Ln(x) is (0, ∞). This makes sense since you can’t raise e to any power to get a negative number. However, I have seen the fact that Ln(x) and e^x used as inverse operations (in other words x =e^(ln(x)) ) in quite a few proofs. For example, here is one proving the power rule for derivatives for all real numbers using implicit derivatives from Paul’s Online Math notes:
http://tutorial.math.lamar.edu/Classes/CalcI/DerivativeProofs.aspx

Since Ln(x) only has positive numbers in its domain, shouldn’t this mean this proof is only valid when x is positive?

Another thing I have wondered about is what goes beyond roots and exponentiation. This is what I mean; the whole point of logs is that they turn addition & subtraction into multiplication & division, and multiplication & division into exponentiation and root extraction. For example (I’m using log to the base 10:

Log(64) = 1.8061799739838869
1.8061799739838869*2=3.612359947967774
Antilog (3.612359947967774) = 4096 which is indeed the square of 64

We can go the other way too:
Log(64) = 1.8061799739838869
1.8061799739838869/2 = 0.903089986991943
Antilog(0.903089986991943) = 8 which is the square root of 64

My question is what happens when exponentiation and root extraction is extended as well. For example:
Log(64) = 1.8061799739838869
(1.8061799739838869)^2 = 3.262286098420434
Antilog(3.262286098420434) = 1829.3049030927973

Or:
Log(64) = 1.8061799739838869
(1.8061799739838869)^½ = 1.343941953353599
Antilog(1.343941953353599) = 22.077096366949473

I don’t know what I expected but I though the “super square” & “super root” of 64 would be something more meaningful. Am I missing something? (probably)

2

There are 2 best solutions below

1
On

You are correct that logs are only defined in the reals when the argument is positive. When we define $x^y$ with $x,y$ irrational it is usually as $e^{y \ln x}$ or something equivalent. This is also only defined for $x \gt 0$. In the reals we shouldn't talk of $\frac d{dx}x^y$ for $x \le 0$ because the function $x^y$ doesn't make sense for us to try to take its derivative. We can do $x^y$ for $x \lt 0$ if $y$ is an integer, and we can take its derivative with respect to $x$, but we shouldn't go through the log to get there. When we get to the complex field we can take logs of negative numbers, but they are multivalued.

0
On

Great question! The answer involves complex analysis.

First of all, log is defined to be the inverse of exponentiation. That is, $l=ln(x)$ is defined to be a value such that $e^l=x$. You stated that $e^x$ is never negative: this is true only when $x$ is restricted to be a real number. You may be familiar with the following famous identity:

$$e^{\pi i} = -1$$

(reference: https://en.wikipedia.org/wiki/Euler%27s_identity). Here we seem to have that $\pi i$ is the log of $-1$. Things get a little bit tricky here. If we square the identity we have

$$e^{2\pi i} = 1$$

Combining these we see that for any integer $k$:

$$1^k e^{\pi i} = e^{2k\pi i + \pi i} = -1$$

This is strange: it seems like $\ln(-1)$ is simultaneously $\pi i, 3\pi i, 5\pi i$ and so on. $\ln$ is called multivalued for this reason. There is a way of dealing with this so that $\ln$ is essentially uniquely defined, I would encourage you to read https://en.wikipedia.org/wiki/Branch_point to learn more.

As for your second question, it seems you are asking if anything can be said about $\exp(\log(x)^a)$. I do not know of anything particularly interesting. One thing you can note is that $e^{(\log(x)^a)}=x^{\log(x)^{a-1}}$.