[Math] compound interest with geometric series

financesequences-and-series

Were studying geometric sequences in maths and this came up as one of the questions:

A mortgage is taken out for 150000 and is repaid annually with 20000 installments.
Interest is charged on the outstanding debt at 10%, calculated annually.
If the first repayment us made one year after the mortgage is taken out, find the number of years it takes for the mortgage to be repaid.

When i looked up the solutions online to this, they didn't use a geometric series formula to solve they just did it manually and they eventually got to an answer of 15 years. My maths teacher told us to first find the Tn formula (ar the power of n-1) and then try and use that to form the series formula . I don't know how to write out the series formula here so can anyone help me ?

Best Answer

There are two ways you can try to solve this problem. The first is try try to keep a running tab of how much is still owed at time $n$. For the sake of legibility, I am going to divide the amounts by 1000. The recursive formula you get is then:

$$a_0=150,\qquad a_{n+1}=(1+0.1)a_n-20.$$

If you compute the first few terms of this sequence, you get

$$a_1=150(1.1)-20, a_2=150(1.1)^2-20(1.1)-20, a_3=150(1.1)^3-20(1.1)^2-20(1.1)-20\ldots$$

We can factor and get a general formula

$$a_n=150(1.1)^n-20(1+1.1+1.1^2+\ldots+1.1^{n-1})$$

We have that $a_n$ is the difference of two terms: one is a geometric series, and the other is growing exponentially. We can use the formula for the sum of a geometric series to get

$$a_n=150(1.1)^n-20\frac{(1.1)^n-1}{0.1}.$$

However, we can get to this formula more quickly by reinterpreting what interest means. If you have investment opportunities, a dollar today is worth more than a dollar tomorrow, because you can invest that dollar to earn interest. If an investment of $1$ dollar today yields $1+i$ dollars tomorrow, then $1$ dollar tomorrow is worth only $1/(1+i)$ dollars today. We can then treat interest calculations as being akin to currency conversion calculations. The same way you might convert a dollar into some number of euros, when interest is computed you are converting today dollars into tomorrow dollars (or next year dollars, or whatever your interest periods are).

Now, we want to reinterpret the problem by converting all future dollar amounts into today-dollars. This has the advantage that the $150$ in our formulas never changes. It is just our initial amount measured in today dollars. However, the amount paid in future dollars has to be converted. Let $b_n$ be the amount still owed, but this time measured in today-dollars. The amount we pay back in year $n$ is then $20(1.1)^{-n}$, and so

$$b_n=150-20(1.1)^{-1}-20(1.1)^{-2}-\ldots -20(1.1)^{-n}=150-20(1.1)^{-1}\left(\frac{1-(1.1)^{-n}}{1-(1.1)^{-1}} \right).$$

If you clean up the expression slightly, you can verify that $a_n=b_n(1.1)^n$, which is what we would hope: to calculate the amount we owe at time $n$, we can do all our calculations in terms of today-dollars, and then convert today-dollars into time-$n$ dollars.

Regardless, we want to solve for the $n$ that makes $b_n=0$. We get

$$1-(1.1)^{-n}=3/4 \Longrightarrow (1.1)^{-n}=1/4 \Longrightarrow n=\log 4/\log 1.1\approx 14.55$$

However, this isn't a whole number, so we have to be careful in interpreting this "answer." Since we only pay back the loan once a year, the result tells us that we are not done after the $14$th year, but we are done by the $15$th year. Our final payment in the $15$th year will be less than the $20$ we pay every other year. To find out how much we need to reduce our final payment by, let us calculate $a_{15}\approx -8.86$. Thus, if we did pay 20 in the final year, we would have overpaid by $8.86$, and thus our final payment should be for $20-8.86=11.14$.

Related Question