The Type aₙ₊₁ = qaₙ

This type of recurrence relation corresponds to a geometric sequence and embodies the characteristics of exponential growth.

The Recurrence Relation

Geometric-type recurrence relation
an+1=qan(q≠0 is a constant)a_{n+1} = qa_n \quad (q \neq 0 \text{ is a constant})

Meaning: each term is qq times the previous term.

Solution Method

Starting from the recurrence relation:

a2=qa1a3=qa2=q2a1a4=qa3=q3a1⋮an=qn−1a1\begin{aligned} a_2 &= qa_1 \\ a_3 &= qa_2 = q^2 a_1 \\ a_4 &= qa_3 = q^3 a_1 \\ &\vdots \\ a_n &= q^{n-1} a_1 \end{aligned}
The general term formula
an=a1⋅qn−1a_n = a_1 \cdot q^{n-1}

This is exactly the general term formula of a geometric sequence!

Worked Examples

Example 1: Basic Solution

The sequence {an}\{a_n\} satisfies a1=2a_1 = 2 and an+1=3ana_{n+1} = 3a_n. Find ana_n.

Solution:

This is of the type an+1=qana_{n+1} = qa_n, where q=3q = 3.

an=a1⋅qn−1=2⋅3n−1a_n = a_1 \cdot q^{n-1} = 2 \cdot 3^{n-1}

Example 2: Bacterial Reproduction

A certain bacterium divides once every hour, splitting into 2 each time. Initially there is 1 bacterium. Find the number of bacteria after nn hours.

Solution:

Let the number of bacteria after nn hours be ana_n. Then:

  • a1=1a_1 = 1
  • an+1=2ana_{n+1} = 2a_n

This is a geometric-type recurrence with q=2q = 2:

an=1⋅2n−1=2n−1a_n = 1 \cdot 2^{n-1} = 2^{n-1}

Example 3: Compound Interest Calculation

Deposit 10000 yuan in a bank at an annual interest rate of 5% with compound interest. What is the amount after nn years?

Solution:

Let the amount after nn years be ana_n yuan. Then:

  • a1=10000a_1 = 10000
  • an+1=an×(1+5%)=1.05ana_{n+1} = a_n \times (1 + 5\%) = 1.05a_n

This is a geometric-type recurrence with q=1.05q = 1.05:

an=10000⋅1.05n−1a_n = 10000 \cdot 1.05^{n-1}

Practice Problems

Exercise 1

The sequence {an}\{a_n\} satisfies a1=3a_1 = 3 and an+1=2ana_{n+1} = 2a_n. Find a6a_6.

Reference Answer(2 个标签)
recurrence relationgeometric sequence

Solution:

This is a geometric-type recurrence with q=2q = 2.

a6=3⋅26−1=3⋅32=96a_6 = 3 \cdot 2^{6-1} = 3 \cdot 32 = 96

Answer: a6=96a_6 = 96

Exercise 2

The sequence {an}\{a_n\} satisfies a1=8a_1 = 8 and an+1=12ana_{n+1} = \frac{1}{2}a_n. Find the general term formula.

Reference Answer(2 个标签)
recurrence relationgeometric sequence

Solution:

This is a geometric-type recurrence with q=12q = \frac{1}{2}.

an=8⋅(12)n−1=8⋅12n−1=82n−1=232n−1=24−na_n = 8 \cdot \left(\frac{1}{2}\right)^{n-1} = 8 \cdot \frac{1}{2^{n-1}} = \frac{8}{2^{n-1}} = \frac{2^3}{2^{n-1}} = 2^{4-n}

Answer: an=24−na_n = 2^{4-n} or an=162na_n = \frac{16}{2^n}

Exercise 3

The sequence {an}\{a_n\} satisfies a3=12a_3 = 12 and an+1=3ana_{n+1} = 3a_n. Find a1a_1 and the general term formula.

Reference Answer(2 个标签)
recurrence relationgeometric sequence

Solution:

This is a geometric-type recurrence with q=3q = 3, and the general term formula is an=a1⋅3n−1a_n = a_1 \cdot 3^{n-1}.

From a3=12a_3 = 12: a1⋅33−1=12a_1 \cdot 3^{3-1} = 12 a1⋅9=12a_1 \cdot 9 = 12 a1=43a_1 = \frac{4}{3}

Therefore the general term formula is: an=43⋅3n−1=4⋅3n−13=4⋅3n−131=4⋅3n−2a_n = \frac{4}{3} \cdot 3^{n-1} = \frac{4 \cdot 3^{n-1}}{3} = \frac{4 \cdot 3^{n-1}}{3^1} = 4 \cdot 3^{n-2}

Answer: a1=43a_1 = \frac{4}{3}, an=43⋅3n−1a_n = \frac{4}{3} \cdot 3^{n-1}


Summary

Symbols Used in This Article

符号类型读音/说明在本文中的含义
an,an+1a_n, a_{n+1}数学符号a-sub-n / a-sub-n-plus-oneThe nnth and (n+1)(n+1)th terms of the sequence
qq数学符号qThe common ratio (a constant)
a1a_1数学符号a-sub-oneThe first term of the sequence
nn数学符号nThe term number
{an}\{a_n\}数学符号set of a-sub-nThe sequence

中英对照

中文术语英文术语音标说明
等比型geometric type/ˌdʒiːəˈmetrɪk taɪp/A recurrence of the form an+1=qana_{n+1} = qa_n
公比common ratio/ˈkɒmən ˈreɪʃiəʊ/The ratio between adjacent terms of a geometric sequence
指数增长exponential growth/ˌekspəˈnenʃəl ɡrəʊθ/Growing by a fixed multiple
通项公式general term formula/ˈdʒenərəl tɜːm ˈfɔːmjələ/A formula expressing the nnth term directly in terms of nn