The Student Room Group

series and sequences question

Please can someone help me understand this mark scheme? I don't really understand
the Bn+1 part... why have they turned it into a recurrence relation separately instead of working with just one equation? For part a I just wrote a long equation of repeating multiplying 1.06 then taking 10000 etc. but I'm not sure how to use this for part b??
(edited 11 months ago)
i've gotta be honest, i dislike how they did part a but their method will help you with solving part b.

for part a, i (and i think you too) did:
( ( 150,000 * 1.06 - 10,000 ) * 1.06 - 10,000 ) * 1.06 - 10,000
= ( 150,000 * 1.06 - 10,000 ) * (1.06)^2 - 10,000 * 1.06 - 10,000
= 150,000 * (1.06)^3 - 10,000 * (1.06)^2 - 10,000 * 1.06 - 10,000
which feels like the easiest solution to me, but it doesn't help with part b.


the mark scheme has instead represented the total mortgage as the sum of a geometric series and a recurrence relation, by doing:
[the total mortgage] = [the original amount owed, increasing due to interest each year] - [the amount payed off, which increases by 10,000 and increases due to interest each year]
we'll call the original amount series A, and the payed off amount relation B.

A at the end of year 0 = 150,000
A ... 1 = 150,000 * 1.06
A ... 2 = 150,000 * (1.06)^2
therefore, A at the end of year n = 150,000 * (1.06)^n

B at the end of year 0 = 0
B ... 1 = [B at the end of year 0] * 1.06 + 10,000
B ... 2 = [B ... 1] * 1.06 + 10,000
therefore, B at the end of year n = [B at the end of year (n-1)] * 1.06 + 10,000
and B ... (n+1) = [B ... n] * 1.06 + 10,000

you can substitute in n=3 and multiply out B to do part a.

then to do part b, i can't be 100% sure on what form the markscheme wants an answer in but i'm guessing it won't be happy with just:
150,000 * (1.06)^n - [B at the end of year (n-1)] * 1.06 + 10,000

so, we need to get the recurrence relation ([B ... n] in terms of [B ... (n-1)]) into a 'closed form solution' ([B ... n] in terms of [n]).
i'm a little iffy on this topic, but if i'm understanding my textbook correctly then to solve this you need to do something similar to solving a second order DE.

(pls pretend for the B(n+1) and B(n) the n+1 and n are in subscript)

for a first order recurrence relation B(n+1) = 1.06 * u(n) + 10,000:

step 1: find the complementary function c(n):
a - start with the reduced equation B(n+1) = 1.06 * u(n) and replace B(n) with r^n (where r is a non-zero constant)
b - this gives the auxiliary equation r^(n+1) = 1.06 * r^n, therefore r = 1.06
c - the complementary function is then c(n) = A * 1.06^n (where A is a constant (unrelated to the A we had earlier))

step 2: find the particular solution p(n):
a - replace the [+ 10,000] with a general function of the same form (as + 10,000 is a constant our p(n) = a (where a is a constant))
b - substitute B(n) = p(n) to give: a = 1.06 * a + 10,000 (p(n) is a function of n, but as it contains no n's p(n) = p(n+1) = etc)
c - therefore a = -10,000 / (1.06 - 1) = - 500,000 / 3

step 3: find the general (closed form) solution B(n):
a - B(n) = c(n) + p(n) = A * 1.06^n - (500,000 / 3)
b - apply the initial conditions (in our case it's that B(0) = 0 and B(1) = 10,000) to find A:
c - therefore 0 = A * 1.06^0 - (500,000 / 3) therefore (500,000 / 3) = A * 1 therefore A = (500,000 / 3)
d - therefore B(n) = (500,000 / 3) * 1.06^n - (500,000 / 3)

so i think that should the solution to part b should be A(n) - B(n) = 150,000 * 1.06^n - ( (500,000 / 3) * 1.06^n - (500,000 / 3) )
although the markscheme might want a more simplified form

for part c, you want to do A(n) - B(n) = 0
therefore 0 = 150,000 * 1.06^n - ( (500,000 / 3) * 1.06^n - (500,000 / 3) )
= ( 150,000 - (500,000 / 3) ) * 1.06^n + (500,000 / 3)
therefore (50,000 / 3) * 1.06^n = (500,000 / 3)
therefore 1.06^n = 10 therefore n = log1.06 (10) = 39.516...
therefore (we have to round up) it will take 40 years to pay off the mortgage

it's almost 2am so i don't have the energy to check my working, but even if i misplaced a 0 somewhere this should at least show you how to do this question. i hope this helped!
Reply 2
Original post by _Hello_There_
i've gotta be honest, i dislike how they did part a but their method will help you with solving part b.

for part a, i (and i think you too) did:
( ( 150,000 * 1.06 - 10,000 ) * 1.06 - 10,000 ) * 1.06 - 10,000
= ( 150,000 * 1.06 - 10,000 ) * (1.06)^2 - 10,000 * 1.06 - 10,000
= 150,000 * (1.06)^3 - 10,000 * (1.06)^2 - 10,000 * 1.06 - 10,000
which feels like the easiest solution to me, but it doesn't help with part b.


the mark scheme has instead represented the total mortgage as the sum of a geometric series and a recurrence relation, by doing:
[the total mortgage] = [the original amount owed, increasing due to interest each year] - [the amount payed off, which increases by 10,000 and increases due to interest each year]
we'll call the original amount series A, and the payed off amount relation B.

A at the end of year 0 = 150,000
A ... 1 = 150,000 * 1.06
A ... 2 = 150,000 * (1.06)^2
therefore, A at the end of year n = 150,000 * (1.06)^n

B at the end of year 0 = 0
B ... 1 = [B at the end of year 0] * 1.06 + 10,000
B ... 2 = [B ... 1] * 1.06 + 10,000
therefore, B at the end of year n = [B at the end of year (n-1)] * 1.06 + 10,000
and B ... (n+1) = [B ... n] * 1.06 + 10,000

you can substitute in n=3 and multiply out B to do part a.

then to do part b, i can't be 100% sure on what form the markscheme wants an answer in but i'm guessing it won't be happy with just:
150,000 * (1.06)^n - [B at the end of year (n-1)] * 1.06 + 10,000

so, we need to get the recurrence relation ([B ... n] in terms of [B ... (n-1)]) into a 'closed form solution' ([B ... n] in terms of [n]).
i'm a little iffy on this topic, but if i'm understanding my textbook correctly then to solve this you need to do something similar to solving a second order DE.

(pls pretend for the B(n+1) and B(n) the n+1 and n are in subscript)

for a first order recurrence relation B(n+1) = 1.06 * u(n) + 10,000:

step 1: find the complementary function c(n):
a - start with the reduced equation B(n+1) = 1.06 * u(n) and replace B(n) with r^n (where r is a non-zero constant)
b - this gives the auxiliary equation r^(n+1) = 1.06 * r^n, therefore r = 1.06
c - the complementary function is then c(n) = A * 1.06^n (where A is a constant (unrelated to the A we had earlier))

step 2: find the particular solution p(n):
a - replace the [+ 10,000] with a general function of the same form (as + 10,000 is a constant our p(n) = a (where a is a constant))
b - substitute B(n) = p(n) to give: a = 1.06 * a + 10,000 (p(n) is a function of n, but as it contains no n's p(n) = p(n+1) = etc)
c - therefore a = -10,000 / (1.06 - 1) = - 500,000 / 3

step 3: find the general (closed form) solution B(n):
a - B(n) = c(n) + p(n) = A * 1.06^n - (500,000 / 3)
b - apply the initial conditions (in our case it's that B(0) = 0 and B(1) = 10,000) to find A:
c - therefore 0 = A * 1.06^0 - (500,000 / 3) therefore (500,000 / 3) = A * 1 therefore A = (500,000 / 3)
d - therefore B(n) = (500,000 / 3) * 1.06^n - (500,000 / 3)

so i think that should the solution to part b should be A(n) - B(n) = 150,000 * 1.06^n - ( (500,000 / 3) * 1.06^n - (500,000 / 3) )
although the markscheme might want a more simplified form

for part c, you want to do A(n) - B(n) = 0
therefore 0 = 150,000 * 1.06^n - ( (500,000 / 3) * 1.06^n - (500,000 / 3) )
= ( 150,000 - (500,000 / 3) ) * 1.06^n + (500,000 / 3)
therefore (50,000 / 3) * 1.06^n = (500,000 / 3)
therefore 1.06^n = 10 therefore n = log1.06 (10) = 39.516...
therefore (we have to round up) it will take 40 years to pay off the mortgage

it's almost 2am so i don't have the energy to check my working, but even if i misplaced a 0 somewhere this should at least show you how to do this question. i hope this helped!


I am not sure what 2nd order DE and auxiliary equations are.. I don't think it is part of my maths spec :frown: but thanks for your help!!
(edited 11 months ago)
Reply 3
Original post by lavely
I am not sure what 2nd order DE and auxiliary equations are.. I don't think it is part of my maths spec :frown: but thanks for your help!!


Just looking at the form of the solution, they probably want you to spot that the first term is the compound interest (without repayment) so
An = 1.06 A_{n-1}
and the remaining terms are a geometric sum (subtracted) so must model the effect of the repayment, compared to the amount owed. So
B_n = 1.06*B_{n-1} + 1000
So paying off 1000 this month means next month the amount owed decreases by 1000*1.06. Not fully checked the recurrence relationships, but theyre about right.

Its a fairly common, but a bit fiddly use of geometric series
https://iitutor.com/geometric-series-time-payments/
Is reasonable, but just google for others, theres a reasonable number of pages/videos. Key thing to think of is at month "n" what was the effect of compound interest and what effect the payments have been. Then simply subtract.
(edited 11 months ago)

Quick Reply

Latest