Tina inherits $60 000 and invests it in an account earning interest at a rate of 0.5% per month. Each month, immediately after the interest has been paid, Tina withdraws $800.
The amount in the account immediately after the `n`th withdrawal can be determined using the recurrence relation
`A_n = A_(n - 1)(1.005) - 800`,
where `n = 1, 2, 3, …` and `A_0 = 60\ 000`
- Use the recurrence relation to find the amount of money in the account immediately after the third withdrawal. (2 marks)
--- 4 WORK AREA LINES (style=lined) ---
- Calculate the amount of interest earned in the first three months. (2 marks)
--- 4 WORK AREA LINES (style=lined) ---