195k views
1 vote
Refinancing a loan. About Suppose someone takes out a home improvement loan for $30,000. The annual interest on the loan is 6% and is compounded monthly. The monthly payment is $600. Let an denote the amount owed at the end of the nth month. The payments start in the first month and are due the last day of every month.

(a) Give a recurrence relation for an. Don't forget the base case.
(b) Suppose that the borrower would like a lower monthly payment. How large does the monthly payment need to be to ensure that the amount owed decreases every month? Feedback?

User Slayter
by
4.2k points

1 Answer

6 votes

Answer:


(a)
A_n = A_(n-1)(1.005) - 600 where
A_0 = 30000

(b) Above $150

Step-by-step explanation:

Given


Loan = \$30000


Rate =6\% --- annually

Solving (a): Recursion for the amount at the end of n month

The base case is:


A(0) = 30000

Next, we calculate the monthly rate (r)


r = (Annual\ Rate)/(12)


r = (6\%)/(12)


r = 0.5\%


r = 0.005

The loan amount remaining at the end of month n is then calculated as:


A_n = A_(n-1)*(1 + r) - 600 ---[The 600 represents the monthly payment]


A_n = A_(n-1)*(1 + 0.005) - 600


A_n = A_(n-1)(1.005) - 600

Solving (b):

Suppose the borrower requests for a lower monthly payment, then the following condition will exist:


P > A_(n-1) *0.005

i.e. the monthly payment will exceed the monthly interest

Let
n= 1


P > A_(1-1) *0.005


P > A_0 *0.005

Substitute 30000 for
A_0


P > 30000 *0.005


P > 150

His monthly payment must exceed $150

User Chatuur
by
4.6k points