A couple of years ago I came up with a function (shown below) that can be used to determine if/when an increasing annuity will be worth more than an annuity paying a fixed amount. $$f(n)=v^n(\mu +Qn)-\mu$$ where $0<v<1$, $n>0$, and $Q>0$
I am interested in finding the root of this equation, but it seems to be impossible using standard methods. I think it can be transformed so the Lambert W function could be applied, but that isn't exactly a closed form solution that can be computed with a calculator.
The information below hopefully can help to solve it - (or just help to find something else interesting).
- Since $\lim \limits_{n \to \infty} f(n) = -\mu$, roots > 0 only exist if $\mu>0$.
- All of the derivatives of the function can be expressed in one formula, where the $p^{th}$ derivative is equal to $$(\ln(v))^{p-1}[v^n\ln(v)(\mu +Qn)+pQv^n].$$ It can then be shown that the root of the $p^{th}$ derivative is equal to $$-\frac{p}{\ln(v)}-\frac{\mu}{Q}.$$
Thanks for your help!
This is still an algebraic transcendental equation for which even if a closed form existed, it would be futile attempting to compute it with a hand-calculator.
I would suggest a Newton-Raphson iteration, which if the function doesn't have a saddle point should converge quite rapidly.