I would like to know if there was a way to approximate i here without a financial calculator, in the following equation:
$\displaystyle -50000 + \frac{12992}{1+i} + \frac{12992}{(1+i)^2} + ⋯ + \frac{12992}{(1+i)^5} = 0 $.
or written in an other way:
$\displaystyle -3848,52 + \dfrac{1- \dfrac{1}{(1+i)^5} }{i}=0 $
I’m pretty sure there is way to do so, but I don’t know how.
I know that $i=0.0941$ here, but I would like to get it without a financial calculator.
Any help appreciated. Thanks in advance.
If we multiply everything out, we arrive at:
$$\dfrac{-16 (3125 i^5 + 14813 i^4 + 27190 i^3 + 23130 i^2 + 7505 i -935)}{(1 + i)^5}$$
This means that we are left to solve:
$$f(i) = 3125 i^5 + 14813 i^4 + 27190 i^3 + 23130 i^2 + 7505 i -935 = 0$$
Unfortunately, this is a quintic function which typically requires numerical methods.
A plot shows:
As the comments mention, we can use Newton-Raphson (or a bevy of other root finding algorithms) as (changed variables to $w$ so not to confuse iterate names), so we have $w_{n+1} = w_n + f(w)/f'(w)$, thus
$$w_{n+1} = w_n - \dfrac{3125 w_n^5+14813 w_n^4+27190 w_n^3+23130 w_n^2+7505 w_n-935}{15625 w_n^4+59252 w_n^3+81570 w_n^2+46260 w_n+7505}$$
From the plot, and using a starting point of $w_0 = 0.17$, this method converges quickly (5 steps) to $0.09411009434376908$.