916 Chapter 37
6. A bank offers different interest rates on deposit accounts. The rate is based on the
size of the periodical deposit (CF) and the following table. Write a future value
function BankFV(CF, r, n).
For Periodical Deposits The Interest Rate Is
≤100.00 r
≤500.00 r + 0.5%
≤1,000.00 r + 1.1%
≤5,000.00 r + 1.7%
>5,000.00 r + 2.1%
1
2
3
4
5
6
7
8
ABCD E
CF r n BankFV
£100.00 5% 5 £580.19 <
--
=BankFV(A3,B3,C3)
£100.01 5% 5 £588.86 <
--
=BankFV(A4,B4,C4)
£1,000.00 5% 5 £5,992.91 <
--
=BankFV(A5,B5,C5)
£1,000.01 5% 5 £6,099.47 <
--
=BankFV(A6,B6,C6)
£5,000.00 5% 5 £30,497.07 <
--
=BankFV(A7,B7,C7)
£5,000.01 5% 5 £30,856.78 <
--
=BankFV(A8,B8,C8)
BANKFV IN ACTION
7. Another bank offers a 1 percent increase in interest rate to savings accounts with
a balance of more than £10,000.00. Write a future value function Bank1FV(CF, r, n)
that refl ects this policy.
1
2
3
4
5
ABCD E
CF r n BankFV
£100.00 5% 5 £580.19 <
--
=Bank1FV(A3,B3,C3)
£1,000.00 5% 5 £5,801.91 <
--
=Bank1FV(A4,B4,C4)
£5,000.00 5% 5 £29,691.39 <
--
=Bank1FV(A5,B5,C5)
BANK1FV IN ACTION
8. The bank in exercise 7 changed its bonus policy and now offers the interest rate
increase based on the following table. Rewrite Bank1FV(CF, r, n) to refl ect this
change.