Financial curiosity
|
03-09-2022, 11:13 PM
Post: #1
|
|||
|
|||
Financial curiosity
Hi all.
No got an MBA. Just a casual question. I’ve noticed most financial calculations use natural logarithms (base e). Most notably, the Exponential Curve Fit. What is it about Natural Logarithm that it is applied so frequently? Thanks. |
|||
03-10-2022, 12:28 AM
Post: #2
|
|||
|
|||
RE: Financial curiosity
Continuous compounding of interest uses the natural anti-log.
— Ian Abbott |
|||
03-10-2022, 01:19 AM
Post: #3
|
|||
|
|||
RE: Financial curiosity
(03-09-2022 11:13 PM)Matt Agajanian Wrote: I’ve noticed most financial calculations use natural logarithms (base e). Most notably, the Exponential Curve Fit. It doesn't matter what base (e or 10, say) is used for an Exponential Curve Fit y = a*ebx, because the term b would simply absorb the conversion factor between the bases, i.e., y = 3*e5 x = 3*10(0.43429*5*x) = 3*102.17147 x so using one base or another is just a matter of taste or convenience if you lack some of the functions. Mathematically, there's no difference. V. All My Articles & other Materials here: Valentin Albillo's HP Collection |
|||
03-11-2022, 11:36 AM
Post: #4
|
|||
|
|||
RE: Financial curiosity
I think that the algorithms used for computation produce natural logarithms. The decadic logarithm (base 10) is then calculated as log(x)=ln(x)/ln(10), where ln(10) is implemented as a constant.
The use of the natural logarithms thus spares an additional calculation step, i.e., is more efficient. |
|||
03-11-2022, 01:17 PM
Post: #5
|
|||
|
|||
RE: Financial curiosity
Compounding effect involve use of powers, and powers can easily transformed into ln/exp pairs
(1+r/n)^(n*t) - 1 = exp((n*t)*ln(1+r/n)) - 1 = expm1((n*t)*log1p(r/n)) This term pop out in financial calculations many times. Evaluate it via log1p/expm1 is more accurate. |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)