Amortization Schaums Financial Management
Amortization Schaums Financial Management
The amortization payment for the loan can be calculated by dividing the loan
amount by the present value of an annuity factor. This approach is based on
the concept that the present value of the payments made over the loan term
equals the amount of the loan.
The present value of an annuity factor (PVAF) for 5 years at 10% interest, with
payments made at the end of each period, can be calculated using the following
formula:
1 − (1 + r)−n
PVAF =
r
Where:
• n = 5 (number of periods)
Step-by-Step Calculation
1. Calculate the PVAF:
1 − (1 + 0.10)−5
PVAF =
0.10
1 − (1.10)−5
PVAF =
0.10
1 − 0.6209213230591549
PVAF =
0.10
0.3790786769408451
PVAF =
0.10
PVAF ≈ 3.790787
Loan Amount
P =
PVAF
150, 000
P =
3.790787
P ≈ 39, 220.55
1
This results in an annual amortization payment of approximately $39,220.55,
consistent with the earlier method.
import numpy as np
# Variables
interest_rate = 0.10 # 10% annual interest rate
n_periods = 5 # 5 years
loan_amount = 150000 # $150,000 loan
Output
The code will output:
Conclusion
This approach shows that the amortization payment is indeed the loan amount
divided by the present value of the annuity factor, which can be calculated
directly or using functions available in tools like Excel or Python. Both methods
ultimately arrive at the same result.
2
1 Calculating the Amount of the Loan
The amount of the loan can be calculated by finding the present value of an
annuity, since the loan is being repaid in equal annual installments. The formula
for the present value of an annuity (PVA) is:
1 − (1 + r)−n
PVA = P ×
r
Where:
• n = 20 (number of periods)
Step-by-Step Calculation
1. Calculate the present value factor:
1 − (1 + 0.12)−20
PVAF =
0.12
1 − (1.12)−20
PVAF =
0.12
1 − 0.10367
PVAF =
0.12
PVAF ≈ 7.4694
3
Year 1:
• Beginning Balance: $14,938.80
Year 2:
• Beginning Balance: $14,731.46
import numpy as np
# Loan parameters
annual_payment = 2000
interest_rate = 0.12
n_periods = 20
4
schedule = []
This code calculates the loan amount and prints the amortization schedule for
the first two years.
5.1 Parameters
The key parameters for the lease problem are:
5
• Annual Payment: $10,000
This function calculates the PVAF for an annuity based on the interest
rate, number of periods, and payment timing (either ’end’ or ’begin’). For
beginning-of-year payments, the formula adjusts to account for the extra
period.
This function computes the initial lease liability and Right of Use (ROU)
asset by multiplying the annual payment by the PVAF.
This function creates an amortization schedule for the lease. It tracks the
balance, interest payment, principal repayment, and ending balance each
year. The payment increases by a specified percentage each year.
6
This function produces journal entries for both the lessee and lessor. The
entries include initial recognition of the ROU asset and lease liability,
as well as annual entries for rental expense, interest expense, and cash
payments.
• Annual entries for rental expense, interest expense, and reduction of the
ROU asset.
• Cash receipt.
7
6 Lease Amortization and Journal Entries
6.1 Lease Liability and ROU Asset
The initial lease liability and Right of Use (ROU) asset are calculated as:
• Debit:
• Credit:
Year 2021:
• Debit:
• Credit:
8
– Accrued Interest: $3,486.85
Year 2022:
• Debit:
• Credit:
Year 2023:
• Debit:
• Credit:
Year 2024:
• Debit:
9
– Interest Expense: $1,237.10
• Credit:
• Debit:
• Credit:
Year 2022:
• Debit:
• Credit:
Year 2023:
• Debit:
• Credit:
10
– Lease Receivable: $8,519.91
Year 2024:
• Debit:
• Credit:
11