
Answer:
(a)f(n) = f(n-1)*1.005 - 600
(b) 150 USD
Step-by-step explanation:
Since the annual interest is 6% and interest is compounded everymonth and added at the beginning of the month. The the monthly interest is 6 / 12 = 0.5%
(a)From there we can give a recursive definition for the dept owned at nth month
f(n) = f(n-1) + f(n-1)*0.005 - 600 = f(n-1)*1.005 - 600
where f(0) = 30000
(b) For the amount owed to decrease everymonth, the monthly payment must be larger than the interest added at every month
that is payment > f(n-1)*0.005
payment > 30000 * 0.005
payment > 150 USD
So the monthly payment needs to be at least 150 USD for the dept to decrease.