Financial Mathimatics Dr. Islam Siam
Financial Mathimatics Dr. Islam Siam
P UBLISHED BY P UBLISHER
You may not use this file except in compliance with the License.
3.4.1 Accumulation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
1.1 Interest
1.1.1 Simple Interest
The essential feature of simple interest is that interest, once credited to an account,
does not itself earn further interest.
Suppose an amount C is deposited in an account that pays simple interest at the
rate of i × 100% per annum. Then after n years the deposit will have accumulated
8 Chapter 1. Interest and Discount Rate
to:
AC = C(1 + in)
Where AC is the accumulated value, C is a principal or the present value (PV), I is
simple interest rate, and n is investment period.
Exercise 1.1 An investor deposits 10, 000 in a bank account that pays simple
interest at a rate of 5%pa. What will the deposit have accumulated to after 3
years?
Solution
AC =?
1 # R code solution
2 # Define the variables
3 P <- 10000 # Principal amount
4 r <- 0.05 # Annual interest rate
5 t <- 3 # Time in years
6
Exercise 1.2 An investor puts 5, 000 in a savings account that pays 10% simple
interest at the end of each year. Compare how much the investor would have
after 6 years if the money was:
(i) invested for 6 years
(ii) invested for 3 years, then immediately reinvested for a further 3 years.
Solution
(i)
AC = C(1 + in)
= 5000(1 + .1 × 6) = 8000
(ii)
1 # R code solution
2 # Define the principal amount and interest rate
3 P <- 5000
4 r <- 0.1
5
The essential feature of compound interest is that interest itself earns interest.
Suppose an amount C is deposited in an account that pays compound interest at the
rate of i × 100% per annum. Then after n years the deposit will have accumulated
to:
AC = C(1 + i)n
1 1 n
C or p.v = AC n
= AC( ) = AC vn
(1 + i) 1+i
1
so, v=
1+i
I = AC −C
Exercise 1.4 A woman who has won a prize is offered a lump sum of 100, 000
to invest now or 55, 000 to invest at the end of this year and another 55, 000 to
invest at the end of the following year. If all investments are assumed to earn
7% pa, which should she choose if she intends to withdraw the money after:
(i) 4 years
(ii) 2 years
Solution
She should choose the option with the biggest present value of the payments.
(The time which she will withdraw the money is not important.)
The PV of the lump sum option is 100, 000.
12 Chapter 1. Interest and Discount Rate
1 1
v= 1+i = 1+.07 = 1.80802
1 1 2
) = 55, 000 v + v2 =
The PV of the two-payment option is 55, 000 1+i + ( 1+i
55, 000 × 1.80802 = 99, 441.
So she should choose the lump sum in either case. (Alternatively, you could
compare the accumulated values at the end of the periods.)
■
1 # R code solution
2 # Define the interest rate
3 r <- 0.07
4
22 # Decision
23 if ( PV _ lump _ sum > PV _ two _ payments ) {
24 cat (" She should choose the lump sum option .\ n")
25 } else {
26 cat (" She should choose the two - payment option .\ n")
27 }
months (starting 12 months after the first investment) to give a total of 350.
Note that:
Given a general quadratic equation of the form
ax2 + bx + c = 0
Solution
(i) Find i that make:
i = 0.4522 = 45.22%.
(ii) Find i that make:
(1 + i)2 + (1 + i) − 3.5 = 0
Therefore i = 43.65%.
■
1 # R code solution
2 # Transaction (i)
3 # Define the variables for Transaction (i )
4 P1 <- 200
5 FV1 <- 350
6 t1 <- 18 / 12 # Time in years
7
11 # Convert to percentage
12 i1 _ percent <- i1 * 100
13
29 # Convert to percentage
30 i2 _ percent <- i2 * 100
31
2500
(i) A(0, 5) = = 2.5
1000
(a) Find i that make (1 + in) = 2.5
2.5 − 1
(1 + i × 5) = 2.5 ⇒ i = = 30%
5
(b) Find i that make (1 + i)n = 2.5
√5
(1 + i)5 = 2.5 ⇒ 1 + i = 2.5
√5
i = 2.5 − 1 = 20%
1 # R code solution
2 # Part (i) - Accumulation Factor A (0 ,5)
3 A05 <- 2500 / 1000
4
9 # Convert to percentage
10 i_ simple _ percent <- i_ simple * 100
11
15 # Convert to percentage
16 i_ compound _ percent <- i _ compound * 100
17
Exercise 1.7 An account pays interest at an effective annual rate of interest of:
15% on Mondays, Tuesdays and Fridays 12% on Wednesdays and Thursdays
10% at weekends Calculate the equivalent level effective annual rate of interest
(for transactions that last for a whole number of weeks).
Solution
The accumulation factor for a 7 year period:
2.308421/7 = 1.12694
1 # R code solution
2 # Weekly accumulation factor
3 weekly _ accumulation <- 1.15^3 * 1.12^2 * 1.10^2
1.3 The principle of consistency 17
8200
A(0, 10) = = 1.783
4600
A(0, 9) = A(0, 2), A(2, 4)A(4, 9)
A(0, 10) 1.8
A(0, 2) = = = 1.129
A(2, 4)A(4, 9) 1.1 × 1.45
A(0, 10) = A(0, 2)A(2, 7)A(7, 10)
A(0, 10) 1.783
A(7, 10) = = = 1.196
A(0, 2) · A(2, 7) 1.129 × 1.32
1 # R code solution
2 # Define the given accumulation factors
3 A_ 09 <- 1.8
4 A_ 24 <- 1.1
5 A_ 27 <- 1.32
6 A_ 49 <- 1.45
18 Chapter 1. Interest and Discount Rate
8 # Calculate A (0 ,10)
9 A_ 010 <- 8200 / 4600
10
11 # Calculate A (0 ,2)
12 A_ 02 <- A_ 09 / ( A_ 24 * A_ 49)
13
14 # Calculate A (7 ,10)
15 A_ 710 <- A_ 010 / (A_ 02 * A_ 27)
16
Exercise 1.9 An investor must make a payment of 5, 000 in 5 years’ time. The
investor wishes to make provision for this payment by investing a single sum
now in a deposit account that pays 10% per annum compound interest. How
much should the initial investment be?
Solution
1.5 Discount rates 19
AC = p.v(1 + i)n
n
AC 1 1
P.V = = AC = AC
(1 + i)n (1 + i)n 1+i
1
if V =
1+i
P.V = AC ×V n
1 1
V= = = .909090
1 + i 1 + .1
P.V = 5000(.909090)5 = 3104.61
1 # R code solution
2 # Define the variables
3 AC <- 5000 # Future value
4 i <- 0.10 # Annual interest rate
5 n <- 5 # Number of years
6
Suppose an amount C is due after n years and a rate of simple discount of d per
annum applies. Then the sum of money required to be invested now to amount to
C after n years (ie the present value of C) is:
Where AC is the accumulated value, p.v is present value (PV), d is simple discount
rate, and n is investment period.
Exercise 1.10 Discount 10, 000 for 3 years using a simple discount rate of 5%
pa.
Solution
1 # R code solution
2 # Define the variables
3 AC <- 10000 # Future value
4 d <- 0.05 # Discount rate per annum
5 n <- 3 # Number of years
6
Suppose an amount C is due after n years and a rate of compound (or effective)
discount of d per annum applies. Then the sum of money required to be invested
now to accumulate to C after n years (ie the present value of C) is:
Exercise 1.11 Discount 10, 000 for 3 years using a compound discount rate of
5%pa.
Solution
AC = 10000 n = 3 Years d = 5%
1 # R code solution
2 # Define the variables
3 AC <- 10000 # Future value
4 d <- 0.05 # Compound discount rate per annum
5 n <- 3 # Number of years
6
Important Formulas:
P.V = AC(1 − d)n = AC v(n) = AC × compound discount factor → compound discount rate
I = AC − p.v
22 Chapter 1. Interest and Discount Rate
Exercise 1.12 (i) Given an investment of 1, 000 find the accumulation after 5
years using a,b, and c rates:
(a) simple discount of 8%pa
(b) compound discount of 8%pa
(c) compound interest of 8%pa.
(ii) Given a payment of 2, 000 due in 4 years’ time, calculate the present value
using a,b, and c rates:
(a) simple interest of 3% pa.
(b) simple discount of 3% pa.
(c) compound interest of 3% pa.
Solution
(ii)
(a)
AC = p.v(1 + i n)
AC 2000
p.v = = = 1785.71
1 + in 1 + .03 × 4
(b) p.v = AC(1 − d n) = 2000(1 − .03 × 4) = 1760
1 # R code solution
2 # Part (i)
3 # Given investment
4 investment <- 1000
5
21 # Part ( ii )
22 # Given payment due
23 payment _ due <- 2000
24
Exercise 1.13 Find the effective annual interest rate that is equivalent to a
simple interest rate of 3% pa over 4 years.
Solution
1.6 Equivalent rates 25
1 + in = (1 + i)n
1 + .03 × 4 = (1 + i)4
√
4
i = 1.12 − 1 = .029 = 2.9%
1 # R code solution
2 # Given simple interest rate over 4 years
3 in _ simple <- 0.03 * 4
4
5 # Number of years
6 n <- 4
7
11 # Convert to percentage
12 i_ effective _ percent <- i_ effective * 100
13
Exercise 1.14 A bank account pays 10% effective annual interest rate over 5
years. Find the equivalent:
(i) simple annual interest rate.
(ii) effective monthly interest rate.
(iii) effective biennial interest rate.
(iv) effective annual discount rate.
(v) simple annual discount rate.
26 Chapter 1. Interest and Discount Rate
Solution
(i)
Find i that make
(1 + i)n = (1 + in)
(1 + .1)5 = 1 + i × 5
1.15 − 1
i= = .122 = 12.2%
5
(ii)
Find i that make
(1 + i)n = (1 + i)n
(1 + .1)5 = (1 + i)60
(1 + i)12 = 1.1
√
12
i = 1.1 − 1 = .00797 = .797%
(iii)
Find i that make
1.6 Equivalent rates 27
(1 + i)n = (1 + i)n
(1 + .1)5 = (1 + i)2.5
1 + i = (1, 1)2
(iv)
Find d that make
1
compound accumulation f actor =
compound discount f actor
1
A(n) =
v(n)
1
(1 + i)n =
(1 − d)n
1
1.15 =
(1 − d)5
1.15 = (1 − d)−5
1.1 = (1 − d)−1
1
1.1 =
1−d
1
1−d =
1.1
1
d=− + 1 = 9.09%
1.1
(v)
Find d that make
28 Chapter 1. Interest and Discount Rate
1
compound accumulation f actor =
simple discount f actor
1
(1 + i)n =
1−d ×n
1
1.15 =
1 − 5d
1
1 − 5d =
1.15
1 − 1.11 5
d= = 7.58%
5
■
1 # R code solution
2 # Given effective annual interest rate
3 i_ effective <- 0.10
4
(1 + i)5 = 1 + (5 × .08)
√
1 + i = 5 1.4 = 1.06961
i = 1 − 1.06961 = 6.96%
1 # R code solution
2 # Load the rootSolve package
3 library ( rootSolve )
4
Exercise 1.16 You have 500 on deposit earning 8.2% annual compound interest.
How long will it be before your account balance is 856?.
Solution
AC = c(1 + i)n
1 # R code solution
2 library ( FinancialMath )
3 TVM ( pv =500 , fv =856 , n =NA , i =0.082 , ic =1 , plot = FALSE )
4
Exercise 1.17 After eleven years an account earning 4.5% annual compound
interest has accumulated to 4, 500. What was the value of the original deposit?
Solution
AC = PV (1 + i)n
AC 4500
PV = =
(1 + i)n (1 + .045)11
= 2772.89
1.7 More Exercises 31
1 # R code solution
2 TVM ( pv =NA , fv =4500 , n =11 , i =0.045 , ic =1 , plot = FALSE )
3 > TVM ( pv =NA , fv =4500 , n =11 , i =0.045 , ic =1 , plot = FALSE )
4 TVM
5 PV 2772.894
6 FV 4500.000
7 Periods 11.000
8 Eff Rate 0.045
= 2.4%
1 # R code solution
2 # First stage calculation
3 result <- TVM ( pv =500 , fv =NA , n =2 , i =0.057 , ic =1 , plot = FALSE )
4 # Second stage calculation ( replace ` first _ stage _fv ` with the actual value
from the first stage )
5 Futurt _ value = result [2]
6
.1(102 )−1
300 A(10)
A(1) = 300 .1(12 )−1
11
= 300 1.1 = 3000
1 # R code solution
2 # Define the accumulation function
3 A <- function (t) {
4 return (0.1 * t ^2 + 1)
5 }
6
7 # Initial investment
8 initial _ investment <- 300
9
Solution
AC = C(1 + i)n
AC = CA(n)
AC
A(n) = C
280
A(6) = 100 = 2.8
And since A(t) = at 2 + 1
∴ a62 + 1 = 2.8
∴ a = [2.8 − 1] ÷ 62 = .05
1 # R code solution
2 # Given values
3 investment _ time _ 0 = 100
4 accumulated _ value _ time _6 = 280
5 time _6 = 6
6
11 # Given values
12 investment _ time _ 5 = 500
13 time _ 20 = 20
14 time _5 = 5
15
16 # Accumulation function
17 A <- function (t) {
18 a * t ^2 + 1
34 Chapter 1. Interest and Discount Rate
19 }
20
A(5) 1500
A(1) = 500
a52 +1
a12 +1
=3
3a + 3 = 25a + 1
22a = 2
1
a= 11
1 2
∴ A(t) = 11 t + 1
The accumulated value:
1
92 +1
= 200 A(9) 11
A(3) = 200 1 32 +1
11
= 920
AC = ((1 + i)n
105 = 100(1 + i)2
√
i = ( 1.05) − 1 = .0247 = 2.47%
∴ 500 A(5, 10)
= 500(1 + .0247)5 = 564.86
a)
AC = C(1 + i)n
= 450(1 + .065)3
= 543.58
b)
AC 450
PV = =
(1 + i)n (1 + .065)4
= 349.795
Exercise 1.24 An investor is saving to pay off an obligation of 50, 000 which
will be due in seven years. If the investor is earning 7.5% effective annual
36 Chapter 1. Interest and Discount Rate
interest rate, how much must be deposited as a single deposit now to meet this
obligation?
a) If we use simple interest.
b) If we use compound interest.
Solution
# simple interest
AC 50000
PV = =
(1 + in) (1 + .075(7))
= 32786.89
# Compound interest
AC 50000
PV = =
(1 + i)n (1 + .075)7
= 30137.75
Exercise 1.25 A deposit of 456 accumulates to 600 in five years what is the
rate of
a) Simple interest.
b) Compound interest.
Solution
1.7 More Exercises 37
a) simple
600 = 456(1 + 5i)
h i
600
i = 456 −1 ÷ 5
= 6.316%
b) Compound
600 = 456(1 + i)5
q
i = 5 600
456 − 1 = 5.64%
Exercise 1.26 What deposit is required to accumulate $5, 600 in six years at
5.6% simple interest? How much is required in the case of compound interest?
Solution
#Simple
AC 5600
PV = (1+in) = (1+.056(6))
= 4191.62
#Compound
AC 5600
PV = =
(1 + i)n (1 + .056)6
= 4038.36
■
38 Chapter 1. Interest and Discount Rate
Exercise 1.28 An investor puts $4000 in a savings account that pays 9% simple
interest at the end of each year. How much the investor would have after 5 years
if the money was invested for 3 years, then immediately reinvested for a further
2 years.
Solution
5994.4 ■
Exercise 1.29 An investor deposits $8000 in a bank account that pays com-
pound interest at a rate of 4% pa. What will the deposit have accumulated to
after 5 vears?
Solution
9733.2 ■
Exercise 1.32 Discount $4000 for 4 years using a simple discount rate of 10%
pa.
Solution
2400 ■
Exercise 1.33 Discount 15000 for 5 years using a compound discount rate of
8% pa.
Solution
9886.2 ■
Exercise 1.36 Given a payment of $2000 due in 5 years’ time, calculate the
present value using simple interest of 5% pa.
Solution
1600 ■
40 Chapter 1. Interest and Discount Rate
Exercise 1.37 Given a payment of $6000 due in 5 years’ time, calculate the
present value using compound interest of 8% pa.
Solution
4083.5 ■
Exercise 1.38 A bank account pays 5% effective annual interest rate over 5
years. Find the equivalent simple annual interest rate.
Solution
5.53% ■
Exercise 1.39 A bank account pays 6% effective annual interest rate over 6
years. Find the equivalent effective monthly interest rate.
Solution
0.49% ■
Exercise 1.40 A bank account pays 7% effective annual interest rate over 7
years. Find the equivalent effective biennial interest rate.
Solution
14.49% ■
Exercise 1.41 A bank account pays 8% effective annual interest rate over 8
years. Find the equivalent effective annual discount rate.
Solution
7.41% ■
Exercise 1.42 A bank account pays 9% effective annual interest rate over 9
years. Find the equivalent simple annual discount rate.
Solution
5.99% ■
2. Nominal interest and discount
We denote the nominal rate of interest payable p times per period by i(p) . This
is also referred to as the rate of interest convertible pthly or compounded pthly.
Therefore, working in years, i(12) is referred to as a nominal interest rate convertible
monthly and i(4) as a nominal interest rate convertible quarterly, etc.
A nominal rate of interest per period, payable pthly, i(p) , is defined to be a rate
of interest of i(p) /p applied for each pth of a period. For example, a nominal rate
of interest of 6% pa convertible quarterly means an interest rate of 6/4 = 1.5% per
quarter.
!p
i(p)
1+i = 1+ (2.1)
p
p h √
i(p)
i = 1+ p −1 , and i(p) = p · p 1 + i −1]
42 Chapter 2. Nominal interest and discount
Exercise 2.2 (i) Express 5% per quarter effective interest as a nominal annual
interest rate convertible quarterly. (ii) Find the annual effective interest rate
equivalent to a nominal interest rate of 12% pa convertible monthly.
Solution
(i)
i(4)
i[ effictivequarterly ] = = 5%
4
i(4) = 4 × 5% = 20%
2.1 Nominal rates of interest 43
(ii)
i(12) = 12%
ip ρ .12 12
i = 1+ −1 = 1+ −1
p 12
= 12.68%
i = 105 i(4) = 2
!p
iβ )
1+i = 1+
p
!4
i(4) i(4) √
4
1 + .05 = 1 + ⇒ = 1.05 − 1
4 4
√
i(4) = 4 · [ 1.05 − 1] = 4.9%
4
or dirertly ase
√
i(p) = p · [ p 1 + i − 1]
(ii)
44 Chapter 2. Nominal interest and discount
i =? i(3) = 12%
.12 3
i = 1+ − 1 = 12.49%
3
!
i(p)
we used, i = 1 + −1
p
Exercise 2.4 (i) $500 is invested in an account which pays nominal interest of
8% pa convertible half-yearly. Find the amount in the account after 3 years. (ii)
A payment of $800 is due in 5 years’ time. Calculate the present value of this
payment at an interest rate of 9% pa convertible monthly.
Solution
(i)
c = 500 i(2) = 8%
AC = c(1 + i)n
.09 12
i = 1+ − 1 = 9.38%
12
AC 800
∴C = = = 510.96
(1 + i)n (1 + .0938)5
AC = c(1 + i)n
.09 60
800 = c(1 + )
12
c = 510.96
Exercise 2.5 The constant nominal rate of interest convertible quarterly is 15%
pa. Calculate the accumulated value after 7 years of a payment of $300.
Solution
i(4) = 15%
.15 28
AC = 300 1 + = 840.98
4
■
46 Chapter 2. Nominal interest and discount
We denote the nominal rate of discount payable p times per period by d (p) . This
is also referred to as the rate of discount convertible p thly or compounded pthly.
Therefore, working in years, d (12) is referred to as a nominal discount rate convert-
ible monthly and d (4) as a nominal discount rate convertible quarterly, etc.
A nominal rate of discount per period payable p thly, d (p) , is defined as a rate
of discount of d (p) /p applied for each pth of a period.
(P) P
(P) P
√
1 − d = 1 − dp ⇒ d = 1 − 1 − dp , and d (p) = [1 − p 1 − d]p
d (12)
= 2% ∴ d (1) = 12 × .02 = 24%
12
(ii)
d =? d (6) = 3%
!p
d (p)
1−d = 1−
p
!p
d (p) .03 6
d = 1− 1− = 1− 1− = 2.96%
p 6
■
2.2 Nominal rates of discount 47
Exercise 2.7 (i) Express 5% per quarter effective discount as a nominal annual
discount rate convertible quarterly. (ii) Find the annual effective discount rate
equivalent to a nominal discount rate of 12% pa convertible monthly.
Solution
d4
(i) 4 = .05
d (4) = 4 × .05 = 20%
(ii)
d =? d (3) = .12
(3) 3
3
1 − d = 1 − d3 ⇒ 1 − d = 1 − .12
3
d = 1 − (1.04)3 = 11.53% ■
Exercise 2.9 (i) Find the nominal annual discount rate convertible monthly
equivalent to an effective annual interest rate of 10%. (ii) Find the annual effec-
tive interest rate equivalent to a discount rate of 8% pa convertible quarterly.
Solution
(i)
d (12) =? i = 10%
!−p
d (p)
1+i = 1−
p
1 d (12)
(1, 1)− 12 = 1 −
12
2.4 Accumulating and discounting using nominal discount rates 49
−12
d (12)
1 + .1 = 1 −
12
h 1
i
(12) − 12
d = 1 − (1.1) 12 = 9.49%
1
h i
Or directly d (p) = 1 − (1 + i)− p P
(ii)
i =? d (4) = .08
!−p !−4
d (p) d (4) .08 −4
i = 1− −1 = 1− −1 = 1− − 1 = 8.42%
p 4 4
= 8.51%
(ii)
After 3 months:[Method 1]
.18 −12
i = 1− − 1 = 19.89%
12
9
.2 12 ·4
3
AC = 250(1 + .1989) 1+ 12 = 302.83
4
OR alternatively:[Method 2 ]
!p
i(p) .2 4
1+i = 1+ ⇒ i = 1+ − 1 = 21.55%
p 4
Then,
3 9
AC = 250(1 + .1989) 12 (1 + .2155) 12 = 302.83
Important formulas:
(p) p
(p) p
h √ i
1+i = 1+ ip ⇒ i = 1+ ip −1 , and i(p) = p · p
1 + i −1
(P) P
(P) P
√
1 − d = 1 − dp ⇒ d = 1 − 1 − dp , and d (p) = p · 1 − p 1 − d
(p) −p (p) −p 1
h i
1 + i = 1 − dp ⇒ i = 1 − dp −1 , and d (p) = p · 1 − (1 + i)− p
1 d
(1 + i) = 1−d ⇒i= 1−d
−p p
d (p) i(p)
1− p = 1+ p
52 Chapter 2. Nominal interest and discount
AC = P ∨ (1 + i)n
10000 = 4500(1 + i)40
√
i = 40 .45 − 1 = 2.16%
Exercise 2.13 Bank A offers a credit card with a monthly interest rate of
1.9%.Bank B offers a card with an annual rate of 23%. Which card is the better
to buy?
Solution
Bank A :
(P) p
i = 1+ ip −1
= (1 + .019)12 − 1 = 25.34%
Bank B :
i = 23%
So bank B is a better credit.
■
2.5 More Exercises 53
1
1
i(p) = p (1 + i) p − 1 = 4 1.0145 4 − 1 = .014421816
.014421816
The quartely rate is 4 = .003605454 = .3605% ■
= 3.39%
Exercise 2.16 Given that i(3) = .0013, find i(7) so that the two interest rates are
equivalent.
Solution
54 Chapter 2. Nominal interest and discount
= .0071
!n
i(p)
AC = PV 1+ = 4500(1.00175)36 = 4, 792.36
p
.025 60 .032 12
AC = 10000 = X · 1 + · 1+
12 4
10, 000
Solving for X yields X = 60 = 8021.27
032 12
1 + 025
12 1 + 4
2.5 More Exercises 55
Exercise 2.19 Compute the accumulated amount (FV) of $560 deposited for
one year at
a) An effective annual rate of interest of 5.6%.
b) An effective annual rate of discount of 5.6%.
c) What is the effective annual rate of interest for part b)?
d) What is the effective annual rate of discount for part a)?
Solution
a) AC = PV (1 + i)n = 560(1 + .056) = 591.36
PV 560
b) AC = (1−i)n = (1−.056) = 593.22
1
c) 1 + i = 1−d
1
1 + i = 1−.056
i = .05932
1
d) 1 − d = 1+i
1 1
d = 1 − 1+i = 1 − 1+.056
d = .05303 ■
!−4
d (4) .056 12
1− = 1+
4 12
56 Chapter 2. Nominal interest and discount
This gives us
d (4) .056 −3
= 1− 1+ = .01387034
4 12
Exercise 2.23 Find the annual effective interest rate equivalent to a nominal
interest rate of 6% pa convertible monthly.
Solution
6.17% ■
1543.3 ■
Exercise 2.30 Find the annual effective discount rate equivalent to a nominal
discount rate of 10% pa convertible four-monthly.
Solution
9.67% ■
Exercise 2.31 Find the nominal annual discount rate convertible monthly equiv-
alent to an effective annual interest rate of 12%
Solution
58 Chapter 2. Nominal interest and discount
11.28% ■
An effective rate of interest is the amount of interest a single initial investment will
earn at the end of the time period. So you can think of the interest being paid at
the end of the time period. We now move on to the case where the interest is paid
continuously throughout the time period.
x n
lim 1 + = ex
n→∞ n
!p
i(p) (∞)
1 + i = lim 1+ = ei
p→∞ p
1 + i = eδ
δ = ln(1 + i)
n
AC = PV (1 + i)n = p ∨ eδ
AC = PVenδ
3.2 Accumulating and discounting using the force of interest 61
AC
PV = = AC(1 + i)−n
(1 + i)n
= ACe−nδ
The next graph illustrates that the force of interest equals i(p) as p = ∞ using
i = .05.
c = 500 δ = 8% n = 3 years
i = eδ − 1 = e.08 − 1 = 8.33%
Exercise 3.2 A payment of $800 is due in 5 years’ time. Calculate the present
value of this payment at a force of interest of 9%pa.
Solution
AC = 800 δ = 9% n = 5 years
i = eδ − 1 = e.09 − 1 = 9.42%
AC 800
ρ ·V = = = 510.1
(1 + i)n (1 + .0942)5
Or you can get Ac as follows:
■
3.3 Derivation force of interest from nominal discount convertible pthly 63
!−p
d (p)
1 + i = lim 1−
p→∞ p
1 1 d (∞)
1+i = p = (∞)
= e
(p)
lim p→∞ 1 − d p e−d
(∞)
1 + i = ed = eδ
δ = ln(1 + i)
The next graph illustrates that the force of interest equals i(p) as p = ∞ using
i = .05.
We can see that d (p) is approaching the same limit of δ = ln 1.05 = 0.0488 as
before. However, d (p) tends to this limit from below whereas i(p) tends to this limit
from above as illustrated in the next graph when we combine figure 3.1 and 3.2.
Hence, we have:
d < d (2) < d (3) < · · · < δ < · · · < i(3) < i(2) < i
Solution
Value of...
In terems of δ i v d
δ δ eδ − 1 e−δ 1 − e−δ
1 i
i ln(1 + i) i 1+i 1+i
1−v
v − ln v v v 1−v
d
d − ln(1 − d) 1−d 1−d d
i = eδ − 1 = e.08 − 1 = 8.33%
1
(4)
h 1
i
δ p .08
41
i = p (1 + i) p − 1 = p e −1 = 4 e − 1 = 8.08%
− 1
1
− 1p .08 − 12
h i
(12) δ p
d = p 1 − (1 + i) = p 1− e = 12 1 − e = 7.97%
(ii)
66 Chapter 3. The force of interest
i .07
d= = = 6.54%
1 + i 1.07
1
h i h 1
i
d 4) = p 1 − (1 + i)− p = 4 1 − (1 + .07)− 4 = 6.71%
1
h i h 1
i
i(2) = P (1 + i) p − 1 = 2 (1 + .07) 2 − 1 = 6.88%
(iii)
d .09
i= = = 9.89%
1 − d 1 − .09
1
h i h 1
i
d (2) = P 1 − (1 − d) p = 2 1 − (1 − .09) 2 = 9.21%
1
h i h 1
i
i(12) = P (1 + i) p − 1 = 12 (1 + .0989) 2 − 1 = 9.47%
R t2
δ (t)dt
A (t1 ,t2 ) = e t1
Solution
(i)
AC = C × A(0, 8)
R8 .01 2 8
= 1000 e 0 ,02+.01 dt dt
= 1000e[.02t+ 2 t ]0
.01 2
= 1000e.02×8+ 2 8 = 1000e.48 = 1616.07
(ii)
R8
AC = C × A(5, 8) = 1000e 5 .02 + .01t dt
.01 2 8
= 1000e[.02t+ 2 t ]5
.01 2 .01 2
= 1000e[(.02×8+ 2 8 )−(.02×5+ 2 5 )]
= 1000e.48−.225 = 1290.46
AC = CA(2, 10)
2 10
= 500e[1.08t]2 e[.13t−.005t ]5
5
= 500e.4−.16 e.8−.525
= 500e.515 = 836.82
AC = CA(3, 8)
= 400A(3, 6)A(6, 8)
R5 R8
= 400e 6 .04t dt
e 6 .2−.02t dt
2 8
= 400e[.04t]3 e[.2t−.01t ]6
6
= 400e.24−.12 e.96−.84
= 400e.24 = 508.5
■
3.4 Force of interest as a function of time 69
Rn
v(n) = e− 0 δ (t)dt
We’ll now calculate a present values when the force of interest changes over time.
We’ll apply the same principles as when we were accumulating, but just put a
negative in the power of the exponential.
Exercise 3.8 If the force of interest is
0.08 0≤t <5
δ (t) =
0.13 − 0.01t 5≤t
AC 1 1
p·v = = 500
A(3, 10) A(3, 5) A(5, 10)
R5 R 10
= 500e− 6 .08 dt e− 5 .13−.01t dt
2 10
= 500e−[.08t]3 e−[.13t−.005t ]5
5
= 500e−(.4−.24) e−(.8−.525)
= 500e−.435 = 323.63
■
70 Chapter 3. The force of interest
R3 R5 R 10
.0125t 2 −.04dt −
P.v = 1000e− 2 .08−.001t dt −
e 3 e 5 .03 dt
2 3 2 5
= 1000e−[.08t−.0005t ]2 e−[10125t −104t ]3 e−[.03t]5
10
= 1000e−.3475 = 706.45
Note that:
1
e−.3475 = .70645 =
A(2, 10)
A(2, 10) = 1.416
Exercise 3.10 Calculate the annual effective rate of interest from time 2 to 10
equivalent to the force of interest function in previous exercise.
Solution
3.4 Force of interest as a function of time 71
(1 + i)8 = 1.416
√
8
i = 1.416 − 1 = 4.44%
When 0 ⩽ t < 5
Rt t
A(0,t) = e 0 .08 dt = e[.08t]0 = e.08t
When 5 ⩽ t
Hence,
72 Chapter 3. The force of interest
e.08t 0⩽t <5
A(0,t) = 2
e.13t−.005t −.25 5⩽t
Find expressions for the present value at time 0 of 1 unit due at time t.
Solution
When 0 ⩽ t < 10
4 +1002tdt
v(t) = e−2510
2 t
= e−[104t+1001t ]0 = e−904t−1001t
2
v(t) = e.04+.002t dt
2 t
= e−[.04t+.001t ]0 = e−.04t−.001t
2
3.5 The continuous cashflow 73
10 ⩽ t < 12
1 1
V (t) = = V (0, 10)V (10,t)
A(0, 10) A(10,t)
R 10 Rt
= e− 0 .04+.002t dt −
e 10 −.015t−.08 dt
2 10 2 t
= e−[.04t+.001t ]0 e−[.0075t −.08t ]10
2 +.08t−.05
= e−.5 e−.0075t
2 +.08t−.55
= e−.0075t
W hen 12 ⩽ t
1
V (t) =
A(0, 10)A(10, 12)A(12,t)
R 10 R 12 R 10
= e− 0 .04+.002t dt −
e 10 .015t−108dt −
e 0 .07 dt
2 10 2 12
= e−[.04t+.001t ]0 e−[.0075t −.08t ]10 e−[.07t]12
t
= e−.67 e−.07t+.84
= e−.07t+.17
Hence:
2
e−.04t−.001t
0 ⩽ t < 10
V (t) = e−.0075t 2 +.08t−.55 10 ⩽ t < 12
e−.07t+.17
12 ⩽ t
Exercise 3.13
Find the value at time t = 0 of $250 due at time t = 6 and $600 due at time t = 8 if
Solution
v(n) = e−nσ
= 680.79
Exercise 3.14 A company expects to receive for the next five years a continuous
cashflow with a rate of payment of 100 × 0.8t at time t (years). Calculate the
present value of this cashflow assuming a constant force of interest of 8% pa.
Solution
Note that:
ax
Z
ax dx = ; x → variable , a → constant
ln a
■
Accumulation factors:
1 Rt
A(t) = = (1 + i)n = enδ = e 0 δ (t) dt
v(t)
Discounting factors:
Rt
v(t) = (i + i)−n = vn = e−nδ = e− 0 δ (t) dt
Exercise 3.15 A company expects to receive for the next five years a continuous
cashflow of 350 pa. It also expects to have to pay out 600 at the end of the first
year and 400 at the end of the third year. Calculate the net present value of these
t
cashflows if v(t) = 1 − 100 for 0 ≤ t ≤ 5
Solution
Z ∞
present Value for continuous payment = ρ(t)v(t)dt
Z ∞ 0
= ρ(t)e−tδ dt
0
76 Chapter 3. The force of interest
= 982
Find the present value at time 0 of the payment stream ρ(t) = 0.5t + 2, which
is received between time 0 and 5 .
Solution
3.5 The continuous cashflow 77
= 13.87
Exercise 3.17 Find the accumulated value of a payment stream of 0.3 + 1.5t
that is received continuously from time 4 to time 8 during which time the force
of interest is 0.01 + 0.05t
Solution
78 Chapter 3. The force of interest
Exercise 3.18 Calculate the present values as at 1 January 2005 of the following
payments:
(i) a single payment of 2000 payable on 1 July 2009.
(ii) a single payment of 5000 payable on 31 December 2016 .
Assume effective rates of interest of 8% per annum until 31 December 2011 and
6% per thereafter.
Solution
3.6 Try to Solve These Questions by Yourself ! 79
1
V=
1+i
(i) 2000V 4.5@8%
4.5
1
= 2000 = 1415
1 + .08
(ii) 5000v5@6% v7@8%
5 7
1 1
= 5000 = 2180
1 + .06 1 + .08
A(0,t )
Exercise 3.19 True or false: (i) A (t1 ,t2 ) = A(0,t2 ) (ii) A (0,t2 ) = A (0,t1 ) +
1
1
A (t1 ,t2 ) (iii) v (t2 ) = v (t1 ) v (t2 − t1 ) (iv) v(t2 ) = A (0,t1 ) A (t1 ,t2 )
Solution
4049.58
■
4)10.72
5)9.38
6)4.88
■
Exercise 3.24 Calculate the present values as at 1 January 2005 of the following
payments: a single payment of 2000 payable on 31 December 2016. Assume
effective rates of interest of 10% per annum until 31 December 2011 and 15%
per annum thereafter.
Solution
510.26 ■
Exercise 3.25 A company expects to receive for the next five years a continuous
cashflow of 500 pa. It also expects to have to pay out 400 at the end of the first
year and 800 at the end of the third year. Calculate the net present value of these
2
t
cashflows if v(t) = 1 − 100 for 0 ≤ t ≤ 5
Solution
1167.67 ■
Babk A:
!12(5)
i(2)
AC = PV 1 +
12
.032 60
= 4500 1 + = 5279.67
12
Bank B:
AC = PVenδ = 4500e5(.032)
= 5280.8
= 1.13
Exercise 3.27
1
Given that δ = , find an expression for A(t) .
1+t
Solution
Rt
A(t) = e 0 δ (t)dt
Rt 1
=e 0 1+t dt
= eln(1+t) = 1 + t
■
3.7 More Exercises 83
Exercise 3.28
δ (t) = t 2
Solution
Rt
A(t) = e 0 δ (t)dt
Rt 2
=e 0 t dt
h 3 it
t t3
3 0
=e =e3
Exercise 3.29 The force of interest is t 22t+1 and the accumulated amount at t = 3
is 10, what is the accumulated amount at time t = 4?
Solution
R t 2t
dt 2 +1
A(t) = e 0 2 t +1 = eln(t )
= t2 + 1
A(4)
A(4) = AC(3)
A(3)
2
4 +1
= 10 2 = 17
3 +1
■
84 Chapter 3. The force of interest
Exercise 3.30 A deposit of $5, 500 earns interest i1 = .04, i2 = .05, i3 = .02
ik = .03 if k ≥ 4.
(i) What is the accumulated value of this deposit after ten periods?
(ii)What rate of interest, paid over the entire period would yield the same accu-
mulated value? This is called the average rate of return.
Solution
(i)
AC = 5, 500(1.04)(1.05)(1.02)(1.03)7
= 7534.35
(ii)
(1 + i)10 = (1.04)(1.05)(1.02)(1.03)7
q
10
1+i = (1.04)(1.05)(1.02)(1.03)7 = 1.031973
i = 3.2%
■
4. Level annuities
a n = v + v2 + v3 + · · · + vn
v (1 − vn )
=
1−v
1 − vn
= −1
v −1
1 − vn
=
i
86 Chapter 4. Level annuities
i(P) .06
= = .005 ⇒ .5%
p 12
1
9
@1% 1− 1+.005
1000a 9 2 = 1000 = 1000(8.7791) = 8779.1
.005
■
Exercise 4.2 You are given that vn = .6139133 and that the present value of an
annuity-immediate of 1 for n periods is 7.72. What is the interest rate?
Solution
1 − vn .3860867
7.72 = =
i i
.380867
i= = .05001
7.72
i = 5%
Exercise 4.3 A person has 10, 000 to invest and wishes to purchase an annuity
which will provide constant monthly payments for a period of ten years. If the
interest rate used to price the annuity is a nominal rate of annual interest of 12%
compounded monthly, what will the monthly payment be?
Solution
4.1 Present Value 87
.12
We have i(mounthly) = 12 = .01, n = 120, and PV = 10000. Assume that the
annuity = AN, then,
10000 10000
PV = AN(a n ) ⇒ AN = a = 1 120 = 143.47 ■
120 (
1− 1+.01)
.01
Thus ä n is the value at the start of any given period of length n of a series of n
payments, each of amount 1, to be made in advance at unit time intervals over the
period. It is common to refer to such a series of payments, made in advance, as an
annuity-due and to call ä n the present value of the annuity-due.
ä n = 1 + v + v2 + · · · + vn−1
1 − vn
=
1−v
1 − vn
=
d
Exercise 4.4
Solution
1
25
1 − vn 1 − 1+.135
a 25 = = = 7.095
i .135
1 − vn 1 − (1.135)−15
ä 15 = = .135
= 7.149
d 1.135
■
88 Chapter 4. Level annuities
ä n = (1 + i)a n .
ä n = a n−1 + 1
So
1 − vn 1 − vn i
an = , ä n = = a n = a n−1 + 1
i d d
(1 + i)n − 1
sn =
i
(1 + i)n − 1 i
s̈ n = = s n = s n+1 − 1
d d
(1 + i)n − 1 (1.035)10 − 1
s 10 = = = 11.731
i .035
(1 + i)n − 1 (1.035)13 − 1
s̈ 13 = = .035
= 16.677
d 1.035
1 n
1 − vn 1 − ( 1+.05 )
an = ⇒ 12 = ⇒ n = 18.78
i .05
(1 + .05)18.78 − 1
s 18.78 = = 29.999 ≃ 30
.05
■
Exercise 4.7 Maria will retire in ten years and is saving 300 every month to
purchase a thirty-year monthly annuity to provide income in retirement. Her
savings account pays a nominal rate of 8% annual interest converted monthly
while the annuity is priced based on a nominal annual interest rate of 15%
compounded monthly. What will Maria’s monthly payment be?
Solution
The accumulated value after 10 years using n = 12 · 10 = 120, i = .08
12 = .006667
is
120 −1
AC = 300s 120 = 300 (1+.006667)
.006667 = 54885.03527
This number now becomes the present value of the annuity Maria will purchase.
Assume that the annuity = AN, then,
PV = AN(a n )
We now have n = 12 × 30 = 360 and i = .15/12 = .0125.
54885.03527 54885.03527
AN = a = 1 360 = 693.99 ≃ 694 ■
360 (
1− 1+.0125)
.0125
Exercise 4.8 Ahmed is saving up for college and needs to have 20, 000 in
twelve years. he plans to make an equal deposit at the end of each year with
the final payment to be made one year prior to entering college (the end of the
investment period). What is the size of the payment he needs to make each year
if the interest earned on his account is 5% per year?
Solution
90 Chapter 4. Level annuities
The accumulated amount of such an annuity at the time the payments cease is
denoted by s̄ n .
1 − vn i
ā n = = an
δ δ
n
(1 + i) − 1 i
s̄ n = = sn
δ δ
R Notice the similarity between the formulae for the present and accumulated
values of annuities:
The numerators are the always consistent. the only difference between the
formulae are the denominators.
4.4 Annuities payable pthly 91
Exercise 4.9 Find the present and accumulated value of an annuity which pays
450 at the end of each quarter for ten years. The rate of interest is 4.5% per
quarter.
Solution
Method 1:
!40
1
1− (p) 1
40
1 − vn 1+ i p 1−
@.5% 1.045
PV = 450 · a 40 = 450 · = 450 · = 450 ·
i i(p) .045
p
= 8, 280.713
Method 2:
!p
i(p)
i= 1+ − 1 = (1 + .045)4 − 1 = 0.1925186
p
1
10
(4) 1 − vn 1 − 1.1925186
PV = 1800 · a 40 = 1800 · (p) = 1800 · = 8, 280.713
i .045(4)
Exercise 4.10 Find the present value as at 1 January 2004 of a series of pay-
ments of 100 payable on the first day of each month during 2005, 2006 and 2007
92 Chapter 4. Level annuities
− 1p
h h 1
i
(p) 12 − 12
d = 1 − (1 + i) ]P ⇒ d = 1 + (1 + .08) 12 = .07671
V = 1 ÷ 1.08 = .92593
1 − v3 1 − .925933
The present value = 1200 V (12) = 1200(.92593) = 2986
d .076714
Exercise 4.11 Find the present value as at 1 June 2004 of payments of 1.000
payable on the first day of each month from July 2004 to December 2004 inclu-
sive. assuming a rate of interest of 8% per annum convertible quarterly.
Solution
!p !p !12
i(P) i(p) .08 4 i(12)
1+ = 1+ ⇒ 1+ = 1+
p p 4 12
i(12) = .07947
!p
i(P)
.07947
i = 1+ −1 = 1+ − 1 = .0824
p 12
1
2
(12) 1 − 1+.0824
a .5 = 12000 = 5861.37
.07947
■
Exercise 4.12 You have just invested 1, 000 in a fixed interest security. In
return you will receive 40 at the end of each half year plus your money back
on redemption in 12 years. You intend to deposit all of the proceeds in a bank
account that will pay an effective rate of interest of 8% pa. How much money
4.5 Perpetuities 93
h√ i √
i = P 1 + i − 1 ⇒ i(2) = 2[ 1.08 − 1] = .07846
(P) p 2
(1 + .08)10 − 1
(2)
s 10 = 80 = 80(14.77) = 1181.6
.07846
Exercise 4.13 The present value at 6%pa of the following series of payments
is $245.32 $1 at time 1, $4 at time 2, $9 at time 3 . . . .$100 at time 10. What is
the present value of the series of payments if, instead of being paid at the end of
each year, the payments are made in three equal instalments at the end of each
third of a year?
Solution
√
i(P) ⇒ i(3) = 3[ 1.06 − 1] = .05884
3
(3) i .06
a 10 = a = 245.32 = 250.16
i(p) 10 .05884
■
4.5 Perpetuities
1 1 (p) 1 (p) 1
a∞ = i ä ∞ = d a∞ = i(p)
ä ∞ = d (p)
Exercise 4.14 Calculate the present value of an annuity that pays 150 pa annu-
ally in arrears forerer using an annual effective rate of interest of 8%.
Solution
94 Chapter 4. Level annuities
1
150a ∞ = 150 = 1.875
.08
Exercise 4.15
Calculate the present value of payments of 2, 000 at times 0.1.2 . . . using i = 7.6% pa
effective.
Solution
2000 2000
2000 ä ∞ = = = 28315.79
d .076 ÷ 1.076
Exercise 4.16 Calculate the present value of an annuity that pays 300pa
monthly in arrears forever using an annual effective rate of interest of 6%.
Solution
√
j(12) = 12[
12
1.06 − 1] = .05841
(12) 300 300
300 a∞ = = = 5136.05
i(12) .05841
■
4.6 Deferred annuities 95
m| a n = a m+n − a m = vm a n
m| ä n = ä m+n − ä m = vm ä n
(p) (p)
m| a n = vm a n
(p) (p)
m| ä n = vm ä n
Exercise 4.17 An annuity immediate will consist of ten years of monthly pay-
ments of 500 each. What is the value of this annuity seven months prior to its
first payment if the nominal annual interest rate is 6% compounded quarterly?
Solution
Method 1:
Find the effective monthly interest rate i(mounthly):
(p) p (p) p
1+ ip [mounthly] = 1 + i p [quarterly]
(12) 12
4 (12)
1 + i 12 = 1 + .06
4 ⇒ i(mounthly) = i 12 = .004975
Hence,
m| a n = vm a n
@.49% @.49%
7| a 120 = v7 a 120 @.49%
120
1
1
7 1−( 1+.004975 )
7| a 120 = 1+.004975 .004975 = 87.116
PV = 500(7| [email protected]%
n ) = 500 × 87.116 = 43558
Method 2:
Find i(12) = 12 × .004975 = .0597
,and i(annually)
96 Chapter 4. Level annuities
(p) p
(1 + i)[annually] = 1 + i p [quarterly]
4 (12)
(1 + i) = 1 + .06 ⇒ i(annually) = i 12 = .06136
4
Hence,
(p) m (p)
m| a n = v a n
1 10
1+.06136 )
(12) 7 (12) 1 7 10 7 1−(
7 a = v 12 a 10 = ( 1+.06136 ) 12 ( 1−v(12) ) = ( 1
1+.06136 ) 12 (
.0597 ) = 7.2596
12 | 10 i
(12)
PV = 6000 × 7 a = 6000 × 7.2596 = 43557.6 ≃ 43558 ■
12 | 10
5. Equations of value
The Equation of Value can be expressed as an equality between the present value
of money received and the present value of money paid out. The general form of
this equation is:
This equation asserts that the present value of cash inflows (money received) is
equal to the present value of cash outflows (money paid out). The present value is
calculated by discounting future cash flows at a specified interest rate to reflect the
time value of money.
The formula for present value is commonly used in various financial calcu-
lations, such as net present value (NPV) analysis, which compares the present
value of inflows (revenues or benefits) with the present value of outflows (costs or
98 Chapter 5. Equations of value
Throughout the following section, we will explore methods to solve this equa-
tion when any of the quantities P, D or R, n, and i are unknown.
Exercise 5.1 Consider a security S where an investor pays a price P to receive
a series of interest payments D at the end of each of the next n years, along with
a final redemption payment R at the end of the n years. The investor earns an
annual effective rate of return i.
Calculate D , given that P=127.12, R=125, i=7.75 % and n=10 .
Solution
The equation of value for this investment is expressed as:
127.12 = Da 10 + 125v10
−10
127.12 = D × 1−1.0775
0.0775 + 125 × 1.0775−10
127.12 = D × 6.7864 + 125 × 0.47405
5.2 Loan schedules 99
Exercise 5.2 In the previous exercise if you have the following information for
security S: P = 78.92, D = 5, R = 125 and i = 0.10. Calculate n
Solution
The equation of value is:
78.92 = 5a n + 125vn
1 − vn
78.92 = 5 × + 125vn
0.10
78.92 − 50
vn = = 0.38560
75
1.10−n = 0.38560
present value of loan payments received and the present value of loan payments
paid out.
Loan Payments as Cash Flows:
- The money received represents the present value of future loan payments that a
borrower is expected to make to the lender.
- The money paid out represents the present value of the loan amount disbursed by
the lender to the borrower.
Exercise 5.3 IA bank lends a company 5, 000 at a fixed rate of interest of 10%
pa effective. The loan is to be repaid by five level annual payments.
Calculate the interest and capital payments of each repayment.
Solution
The value of each repayment Y as following
Y a 5 = 5, 000
5, 000
Y= = 1, 318.98
3.7908
There are two more efficient approaches for determining the outstanding
5.2 Loan schedules 101
12759.287v8% 1 + a 2 = 12759.287 × 1.08−1 × (1 + 1.6901) = 31, 781.26
12%
12759.287v8% 1 + a 2
12%
Exercise 5.5 A loan of 16,000 is repayable by ten level payments, made an-
nually in arrears. The annual effective rate of interest is 4%. Calculate: (i) the
interest element of the 4th payment (ii) the capital element of the 7th payment
(iii) the capital repaid in the last five years of the loan (iv) the total interest paid
over the whole loan.
Solution
(i) The outstanding capital after the 3rd payment (computed prospectively)
is determined by:
(ii) The outstanding capital after the 6th payment (calculated prospectively)
is found using:
(iii) The capital repaid over the last five years of the loan equals the out-
standing capital after the 5th payment, i.e.:
(iv) The total interest payable over the whole loan is the total payment made
less the capital borrowed, i.e.:
■
104 Chapter 5. Equations of value
NPV = The present value of cash inflows−The present value of cash outflows
The accumulated profit over a specific period can be represented using the
cumulative sum of net profits or retained earnings. If we denote the net profit in
each period as Pt , where t is the period, the accumulated profit (AP) at the end of a
given period is calculated as:
t
APt = ∑ Pi
i=1
Exercise 5.6 Let the cashflow at time t be denoted Ct . The cashflows for two
business ventures are as follows:
AP1 = −100(1 + i)5 − 40(1 + i)4 + 50(1 + i)3 + 120(1 + i)2 @15% = −36.352
So the accumulated profits are −36, 352 (ie a loss) for Venture 1 and 8, 107
for Venture 2. The net present values are:
So the NPVs are −18, 073 for Venture 1 and 4, 031 for Venture 2 . ■
Exercise 5.7 A company must choose between Project C and Project D, both of
which would be financed by a loan, repayable only at the end of the project. The
company must pay interest at a rate of 6.25%pa effective on money borrowed,
but can only earn interest at a rate of 4%pa effective on money invested in its
deposit account.
The cashflows for Project C, which has a term of 5 years, are:
Outgo Income
(start of year 1) 140, 000 (end of year 5)
The cashflows for Project D, which has a term of 3 years, are:
Outgo Income
80, 000 (start of year 1) 10, 000 (end of year 1)
20, 000 (start of year 2) 30, 000 (end of year 2)
5, 000 (start of year 3) 87, 000 (end of year 3)
Calculate the accumulated profit at the end of 5 years for each project.
106 Chapter 5. Equations of value
Solution
Project C Since Project C does not generate any income, the company will be
relying on the loan throughout the 5 -year term. So only the borrowing rate of
6.25% will be relevant here.
The accumulated profit at time 5 years will be:
Project D Since Project D does generate income during the project’s term,
we need to consider the company’s net assets at the end of each year to see
whether there are any excess funds available to invest.
At the end of year 1 , there is an income payment of 10, 000. However, at
that time the company needs to pay interest of 80, 000 × 0.0625 = 5, 000 on the
initial loan and it also has further outgo of 20, 000 at the start of year 2 . The
net outgo at this time is therefore:
So further borrowing of 15, 000 is required. This takes the total borrowing
to:
Since the loan can only be repaid at the end of the project, this money cannot
be used to reduce the loan outstanding. Instead, the company has 19, 062.5
available for investment.
So, just after the outgo of 5, 000 at the start of year 3, the company has: -
loans totalling 95, 000 - investments of 19, 062.5.
At the end of the project (ie time 3 years), the company receives income of
87, 000. The money invested at the start of year 3 has grown to:
So the total amount at the company’s disposal is 87, 000+19, 825 = 106, 825.
From this, the company must repay the loan of 95, 000 plus the interest accrued
on this loan over the year. This leaves an amount at time 3 years of:
To obtain the accumulated profit at time 5 , we take this money at time 3 and
accumulate it for 2 years to time 5 (using the investment rate of interest of 4% ):
Exercise 5.8 The business plan for a new company that has obtained a 5 -year
lease for operating a local bus service is shown in the table below. Items marked
108 Chapter 5. Equations of value
AV (t) = −250 × 1.10t + 200 × 1.10t−1/12 − 2, 000 × 1.10t−3/12 + (1, 000 − 400) s̄t−3/12
= −250 × 1.103/12 + 200 × 1.102/12 − 2, 000 × 1.10t−3/12 + 600 s̄t−3/12
To determine the DPP, we need to find the value of t for which the accumu-
lated value of the cashflows up to that time is 0 . This occurs when:
to obtain:
2, 052.83
āt−3/12 = = 3.42138
600
Now:
1 − 1.10−(t−3/12)
= 3.42138 ⇒ 1.10−(t−3/12) = 0.67391
ln 1.10
ln 0.67391 3
−(t − 3/12) ln 1.10 = ln 0.67391 ⇒ t = − + = 4.39
ln 1.10 12