Skip to main content
WAMathematics ApplicationsSyllabus dot point

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.

Generated by Claude Opus 4.77 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this dot point is asking
  2. Compound interest as a recurrence
  3. Depreciation
  4. Loans and annuities
  5. Using the finance solver

What this dot point is asking

You must set up first-order recurrence relations for financial situations, convert annual rates to per-period rates, and find balances, repayments, interest paid or time taken, often with the finance solver on your calculator.

Compound interest as a recurrence

Compound interest adds interest to the balance each period, so the next balance is the current balance multiplied by a growth factor. If the interest rate is r%r\% per period, the multiplier is

R=1+r100R = 1 + \frac{r}{100}

and the recurrence is An+1=R×AnA_{n+1} = R \times A_n, with A0A_0 the initial principal. The closed form is An=A0R nA_n = A_0 R^{\,n}.

Depreciation

Reducing-balance (declining) depreciation uses a multiplier less than one. If an asset loses r%r\% of its value each year, then R=1−r100R = 1 - \tfrac{r}{100} and An=A0R nA_n = A_0 R^{\,n}. Flat-rate (straight-line) depreciation instead subtracts a fixed dollar amount each period, giving the recurrence An+1=An−dA_{n+1} = A_n - d.

Loans and annuities

Reducing-balance loans and annuities combine a growth factor with a fixed payment. Each period interest is added and a payment is made:

An+1=R×An−dA_{n+1} = R \times A_n - d

Here dd is the regular repayment (for a loan) and A0A_0 is the amount borrowed. For an annuity (drawing down savings) the same relation applies with dd the regular withdrawal. When the loan is repaid, An=0A_n = 0.

Using the finance solver

The finance solver (TVM solver) links five quantities: NN (number of payments), I%I\% (annual rate), PVPV (present value), PMTPMT (payment) and FVFV (future value). Enter any four and solve for the fifth.

The total interest paid on a loan is the sum of all repayments minus the amount borrowed: interest=N×d−A0\text{interest} = N \times d - A_0.