What is log

What is log#

Solving for x

\(e^x = b\)

raising the euler’s number to what value that it becomes b.

\(log_e(b) = x\)

[1]:
import numpy as np

b = 5.2

print(np.log(b))

print(np.exp(np.log(b)))
1.6486586255873816
5.2