Annuity on Principal paid monthly

122 Views Asked by At

I have to calculate the annuity amount to be paid monthly on a loan of 5000 with 5% interest rate in 2 years. The annuity should be calculated monthly. The interest will change on the basis of remaining amount. My problem is that every calculator and formulae I am using is giving me the amount of 362, while the actual annuity amount should be 219.36. I do not know how I am getting this amount. Only this Calculator has given me the correct amount. But they have not shown the process they have used to calculate the annuity payout.

This is the loan details:

Loan Amount 5000 €
Nominal Interest Rate 5.00 %
Duration 2 years
Start-Date 01.01.2018

I will have to use only above input parameters to calculate below result.

This is the repayment plan of loan that I will get:

+------------+---------+-----------+----------+-------------------------------+---------------------------------+
| Date       | Annuity | Principal | Interest | Initial Outstanding Principal | Remaining Outstanding Principal |
+------------+---------+-----------+----------+-------------------------------+---------------------------------+
| 01.01.2018 | 219.36  | 198.53    | 20.83    | 5000                          | 4801.47                         |
+------------+---------+-----------+----------+-------------------------------+---------------------------------+
| 01.02.2018 | 219.36  | 199.35    | 20.01    | 4801.47                       | 4602.12                         |
+------------+---------+-----------+----------+-------------------------------+---------------------------------+
| ...        | ...     | ...       | ...      | ...                           | ...                             |
+------------+---------+-----------+----------+-------------------------------+---------------------------------+
| 01.12.2019 | 219.28  | 218.37    | 0.91     | 218.37                        | 0                               |
+------------+---------+-----------+----------+-------------------------------+---------------------------------+
2

There are 2 best solutions below

5
On

I don't know what formulas you have, but if the effective rate for one month is $i$, the annuity will be $$A=M_0\frac{i(1+i)^N}{(1+i)^N-1},$$ whit $M_0$ being the initial debt (that is the capital to pay at the beginning) and $N$ is the number of periods to pay. You have $N=2\times 12=24$ and $i=\frac{.05}{12}$ if, as I suppose, the $5\%$ is a yearly nominal rate. $M_0=5000$. Try those numbers in the formula and you'll get the answer you are looking for.


To get the formula you can think as follows:

  • The annuity $A_n$ is constant in each period (let's say $A$) and it pays the period's interests $I_n$ and devolves part of the capital $C_n$. That is $$A=I_n+C_n.$$
  • The interests to pay at $n$ are proportional to the ammount $M$ of the debt at $n-1$, that is $$I_n=iM_{n-1}.$$
  • The debt at $n$ equals the debt at $n-1$ minus the capital paid at period $n$: $$M_n=M_{n-1}-C_n=M_{n-1}-(A-I_n)=$$ $$=M_{n-1}-(A-iM_{n-1}),$$ which gives $$M_n=(1+i)M_{n-1}-A.$$

Now, we can use the formula to see that $$M_1=(1+i)M_0-A;$$

$$M_2=(1+i)M_1-A=$$ $$=(1+i)\big((1+i)M_0-A\big)-A=$$ $$=(1+i)^2M_0-A\big(1+(1+i)\big);$$

$$M_3=(1+i)M_2-A=$$ $$=(1+i)\Big((1+i)^2M_0-A\big(1+(1+i)\big)\Big)-A=$$ $$=(1+i)^3M_0-A\big(1+(1+i)+(1+i)^2\big);$$

$$\vdots$$

$$M_n=(1+i)^nM_0-A\big(1+(1+i)+(1+i)^2+\cdots+(1+i)^{n-1}\big)$$ $$=(1+i)^nM_0-A\frac{(1+i)^n-1}i.$$ (in the last step I used the formula $$1+q+q^2+\cdots+q^{n-1}=\frac{q^n-1}{q-1},\quad q\neq1$$ for the sum with the dots.)

Now, you want that at the last period $N$ your remaining debt be zero, that is $M_N=0$, so $A$ has to be such that $$M_N=(1+i)^NM_0-A\frac{(1+i)^N-1}i=0,$$ and solving the equation for $A$ gives the formula $$A=M_0\frac{i(1+i)^N}{(1+i)^N-1}.$$

0
On

The 5% interest is an annual stated figure, but the repayment period is monthly. The standard convention is that this refers to a 24-period loan, where each period is a month and the monthly interest rate is $r=.05/12$. So the question is to compute the monthly payment $C$ such that a 24-period annuity with discount rate $r$ has present value 5000.

Recall that the present value of an n-period annuity with first payment paid one period from now is

$$PV=\frac{C}{r}(1-\frac{1}{(1+r)^n}).$$