Limit of a Sequence0%

Recurrence Relations · Topic 4 of 5

Limit of a Sequence

Video lesson · from 10:502 worked examples

One lesson video covers all of Recurrence Relations, so it opens at 10:50 for this topic — not from the beginning.

Theory

Divergence

If we have a recurrence relation of the form Un+1=aUn+bU_{n+1} = aU_n + b

where a<1 or a>1a < -1 \text{ or } a > 1 then the sequence will diverge.

i.e. it will keep increasing, decreasing or oscillating.

Convergence

If we have a recurrence relation of the form Un+1=aUn+bU_{n+1} = aU_n + b

where 1<a<1-1 < a < 1 then the sequence will converge to a limit.

i.e. it will settle at approximately the same value.

Limit of a Sequence

For convergent sequences defined by Un+1=aUn+bU_{n+1} = aU_n + b with 1<a<1-1 < a < 1, UnU_n tends to a limit LL as nn \to \infty.

L=aL+bL = aL + b
LaL=bL - aL = b
L(1a)=bL(1 - a) = b
L=b1aL = \frac{b}{1 - a}

⚠️ Common Examiner Traps

  • A limit exists only when 1<a<1-1 \lt a \lt 1: state this condition. Quoting a limit without justifying that it exists loses marks.
  • L=b1aL = \frac{b}{1-a}: note it is 1a1-a on the bottom, not a1a-1. Getting this the wrong way round flips the sign.
  • The limit does not depend on the starting value: u0u_0 affects how fast you get there, not where you end up.
  • Interpret it in context: say what the limit means in the situation described — a long-term level, not just a number.

Worked examples

Example 1

A sequence is defined by Un=0.6Un1+5U_n = 0.6U_{n-1} + 5 with U1=10U_1 = 10.

a) Does the sequence have a limit as nn \to \infty?

b) Calculate this limit if it exists.

a) Yes, a limit exists because 1<0.6<1-1 < 0.6 < 1.

b) Using the formula L=b1aL = \frac{b}{1 - a}:

L=510.6=50.4=12.5\begin{aligned} L &= \frac{5}{1 - 0.6} \\ &= \frac{5}{0.4} \\ &= 12.5 \end{aligned}

The limit is 12.5.

Example 2

The deer population in a forest is estimated to drop by 7.3% each year.

Each year, 20 deer are introduced to the forest. The initial deer population is 200.

a) How many deer will there be in the forest after 3 years?

b) What is the long-term effect on the population?

a) Dropping by 7.3% means multiplying by 10.073=0.9271 - 0.073 = 0.927. Adding 20 each year.

Un+1=0.927Un+20,U0=200U_{n+1} = 0.927U_n + 20, \quad U_0 = 200
U1=0.927(200)+20=205.4U_1 = 0.927(200) + 20 = 205.4
U2=0.927(205.4)+20=210.4058U_2 = 0.927(205.4) + 20 = 210.4058
U3=0.927(210.4058)+20215.046U_3 = 0.927(210.4058) + 20 \approx 215.046

There will be approximately 215 deer after 3 years.

b) To find the long-term effect, calculate the limit:

Limit exists since 1<0.927<1-1 < 0.927 < 1.

L=b1a=2010.927=200.073273.97\begin{aligned} L &= \frac{b}{1 - a} \\ &= \frac{20}{1 - 0.927} \\ &= \frac{20}{0.073} \\ &\approx 273.97 \end{aligned}

The population will settle at around 274 deer.