4

I've got a savings objective to achieve in 6 years and I'm trying to work out the percentage of salary I need to put towards it to achieve it.

I am trying to work out how to calculate the future value of my savings account.

Starting point

I have $10 in savings.

Contributions

Each year I contribute 10% of my earnings to my savings account.

Earnings

I will earn $1000 this year. Each year my salary increases with inflation and I'm assuming it's going to be 2% for the foreseeable future.

My savings account accumulates interest at a rate of 6% each year and all of that is re-invested.

I can do it the long manual way (excel spreadsheets), I was just wondering if there was an elegant formula I could use?

The question is:

Given the above, how much will I have in my savings account at the end of the savings period i.e. in 6 years time?

user714852
  • 145
  • 4

1 Answers1

2

Given the following

b[n] is the balance in period n
r is the periodic interest rate
i is the periodic inflation rate
d is the initial deposit made at period n = 0
x is the balance at period n = 0

b[n] = (d (1 + i)^n (1 + r) - (1 + r)^n (d + d r - i x + r x))/(i - r)

For example

starting with x = £1000
making quarterly payments beginning immediately with d = £100
earning interest at r = 2% per quarter
increasing payments by i = 1% per quarter to offset inflation

x = 1000
d = 100
r = 0.02
i = 0.01

The balance after four quarters and four deposits is

n = 4

b[n] = 1509.08

Mathematica calculation of formula

FullSimplify[
 RSolve[
  {b[n + 1] == (b[n] + d (1 + i)^n) (1 + r), b[0] == x}, b[n], n]]

{{b[n] -> (d (1 + i)^n (1 + r) - (1 + r)^n (d + d r - i x + r x))/( i - r)}}

user714852
  • 145
  • 4
Chris Degnen
  • 10,107
  • 1
  • 21
  • 36