I'm looking for the equation that basically works like this
"Assuming you have X saved, and save Y more a year, and your savings grow at Z percent, you will have S after T years."
|
I'm looking for the equation that basically works like this "Assuming you have X saved, and save Y more a year, and your savings grow at Z percent, you will have S after T years." |
|||||
|
|
If
and
then,
money.SE does not support MathJax and so additional math gets messier, but some people may have recognized the calculations as being the same as what is called Horner's rule or Horner's method for evaluating a polynomial. The polynomial in question is a polynomial with variable t given by Xt^n + Yt^{n-1} + Yt^{n-2} + .... + Yt + Y and it is evaluated at t = 1+z. Note that if the periodic contributions are variable instead of being fixed, this is easily accommodated by changing the appropriate coefficient of the polynomial. On the other hand, for fixed contributions, the polynomial in question can be expressed Xt^n + Y(t^n - 1)/(t-1) which, when evaluated as t = 1+z gives X(1+z)^n + Y((1+z)^n-1)/z as the amount that one will have after n time intervals have elapsed. |
|||||||
|