burkemg said:
Does anyone have a formula I can use to check that the interest is being calculated correctly.
Thanks
My guess is that you already have this question answered and this is way more detail than you need but if anyone is interested in the formula I actually have it to hand because I'm working on some property investment software to allow various
"what if" scenarios to be modeled.
The formula is tricky by hand but easy for the computer..
m = p x i / [ q x ( 1 - [1 + (i/q)]^(-n x q) ) ]
m = calculated monthly repayment
^ = to the power of
p = principal
i = interest rate
q = payments per year
n = number of years
once m is calculated you need to loop for each month and perform
h = p (i/q) this is the interest part of your monthly repayment
c = m - h this is the principal part of your payment
q = p - c this is the new principal, set p = q, loop back to calculate h
For example, Borrow 250,000 at 3.75% over 30 years
(numbers rounded to nearest euro for clarity)
p = 250000
i = 0.0375
q = 12
n = 30
I = interest componenet of monthly payment
P = principal component of monthly payment
RP = remaining principal
Monthly repayment = 1158
.......I...P...PR
Sep-05 781 377 249623
Oct-05 780 378 249246
Nov-05 779 379 248867
Dec-05 778 380 248487
Jan-06 777 381 248106
Feb-06 775 382 247723
Mar-06 774 384 247339
Apr-06 773 385 246955
May-06 772 386 246568
Jun-06 771 387 246181
Jul-06 769 388 245793
Aug-06 768 390 245403
Sep-06 767 391 245012
Oct-06 766 392 244620
Nov-06 764 393 244227
Dec-06 763 395 243832
Jan-07 762 396 243436
Feb-07 761 397 243039
Mar-07 759 398 242641
.. and so on