How does money grow or shrink over time under interest and repayments?
Model and solve problems involving compound interest, depreciation, annuities, loans and investments using recursion and the financial solver.
How to set up recurrence relations for compound interest, depreciation, loans and annuities, and how to use the finance solver to find payments, balances and the number of periods.
Reviewed by: AI editorial process; not yet individually human-reviewed
Have a quick question? Jump to the Q&A page
Jump to a section
What this dot point is asking
You must recognise compound interest, depreciation, loans and annuities as one family of recurrence relations, set up the correct sign on the payment, and solve with recursion or the finance solver.
One recurrence for every model
The whole topic reduces to choosing and in the same recurrence.
The sign of is the decision that separates a loan from a savings plan. A repayment is subtracted, a deposit is added.
Converting the rate
Interest is quoted as a nominal annual rate but applied per compounding period. Divide by the number of periods per year: monthly uses , quarterly . Then count in those same periods.
Using the finance solver
The SCSA calculator-assumed section expects the built-in finance (TVM) solver for harder questions. The standard fields are present value , future value , payment , number of periods and interest rate per year with a compounding setting. Sign convention: money you receive is positive, money you pay is negative. To find an unknown payment or the number of periods, enter the four known values and solve for the fifth.
For the loan above, set , , compounding monthly, and solve for to find the number of payments, then read the final small payment from the last balance.
Which tool for which question
The topic rewards picking the efficient method. For a single balance a few periods ahead, iterate the recurrence by hand. For a balance many periods ahead with no payments, use the explicit form . For an unknown payment, number of periods, or present or future value in a loan or annuity, use the finance solver. For "when does the balance first reach a target", iterate (or solve for ) and round to the next whole period. Recognising which of these a question wants saves time and avoids setting up the wrong calculation.
Reading the wording for sign and rate
Two reading skills decide every finance answer. First, the sign of the regular payment: words like "repay", "withdraw" and "pay off" mean a subtraction (negative ); words like "deposit", "contribute" and "add" mean an addition (positive ). Second, the compounding period: "compounding monthly" with an annual rate means divide by and count months; "quarterly" means divide by and count quarters. Get these two right and the rest of the calculation is mechanical; get either wrong and the whole answer is off.
Exam-style practice questions
Practice questions written in the style of SCSA exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.
WACE 20227 marksA loan of \25\,0009\%\. (a) Write a recurrence relation for the balance after payments. (b) Find the balance after the second payment. (c) Explain how you would use the recurrence to find how long the loan takes to repay.Show worked answer →
A reducing-balance loan adds interest then subtracts the payment each month.
(a) Monthly rate , so , with . (2 marks)
(b) . , so . (3 marks)
(c) Iterate the recurrence, increasing until first reaches zero or below; the value of at that point is the number of payments, and the last payment is reduced to clear the small remaining balance. (2 marks)
Markers reward the correct per-period rate, the recurrence with both interest and repayment, and accurate iteration.
WACE 20245 marks\4003.6\%2$ years.Show worked answer →
This is an annuity-investment: interest is added then a deposit is made each month.
Monthly rate , so , with , over months. (2 marks)
Iterating (or using the finance solver with , , , ) gives a future value of about . (3 marks)
Markers reward the annuity-investment recurrence with a positive deposit, the correct period rate and periods, and a balance near .
