Get the natural logarithm of a number
=LN(number)
| Parameter | Description |
|---|---|
number |
A number to take the natural logarithm of. |
=LN(1) // returns 0
=LN(e) // returns 1
=LN(e^2) // returns 2
The equivalent form of the natural logarithm function is given by:
=LN(number)=LOG(number,e) // Where e ≈ 2.7128 or EXP(1)
This inverse relationship can be represented with the formulas below, where the input to the LN function is the output of the EXP function:
= LN(EXP(1)) // returns 1
= LN(EXP(2)) // returns 2
= LN(EXP(n)) // returns n