Fortran Finance
Loan Amortization
Author: | Mitch Richling |
Updated: | 2025-01-21 13:40:58 |
Generated: | 2025-01-21 13:41:00 |
Copyright © 2025 Mitch Richling. All rights reserved.
Table of Contents
1. loan_level_payments.f90
The typical approach to solving loan problems is to equate the present value of the principal with the present value of the payment cashflow stream in a single equation and solve for the payment. With only one principal payment occurring at the beginning and a payment stream consisting of a level annuity certain, this is pretty simple. Unfortunately things get much more complex if the payment structure (for principal or repayment) changes from this baseline. These more difficult situations can be easily handled by considering the problem as multiple cashflow streams. In order to illustrate how to approach such problems using a multiple cashflow methodology, this program applies the technique to solve the familiar problem of the simple loan.
We can model a loan as a pair of parallel cashflows:
- Money paid by the lender (i.e. the principal) – a negative cash flow from the lender's perspective
- Money paid to the lender (i.e. loan payments) – a positive cash flow from the lender's perspective
These two cash flows should have equal magnitude PV & FV, but of opposite sign.
2. loan_geometric_payments.f90
This program extends the example from loan_level_payments.f90 to geometric payments. Not much changes in the flow except the annuity type.
If you are curious about how such a loan might come about, then consider the following scenario:
A business needs a 1M load. They wish to make annual payments, and to pay down the loan as quickly as possible. At the end of the year they can afford to pay 95K. The business has been experiencing 11% revenue growth for the last 5 years with projections showing that to continue. Based on growth projections, they wish to increase loan payments by 10% per year. We wish to extend them the loan, and make 7%.
3. loan_up_down_payments.f90
This program extends the examples from loan_level_payments.f90 and loan_geometric_payments.f90 to a unequal, non-standard annuity designed to make payments round cent values.
One way to amortize a loan is to round all payments but the last one up to the nearest penny, and then adjust the last payment lower to accommodate the difference – this last payment is rounded DOWN to the nearest cent. This insures that the lender will not loose more than a fractional cent on the entire transaction, and the borrower don't pay more than the agreed upon rate (this second condition is required by law in many jurisdictions). Note this method is unsuitable for very long term loans as it may shorten the overall term.