This is a beta course, so its structure, chapters, and examples may continue to change.
The Type aₙ₊₁ = qaₙ
This type of recurrence relation corresponds to a geometric sequence and embodies the characteristics of exponential growth.
The Recurrence Relation
Meaning: each term is q times the previous term.
Solution Method
Starting from the recurrence relation:
a2a3a4an=qa1=qa2=q2a1=qa3=q3a1⋮=qn−1a1
This is exactly the general term formula of a geometric sequence!
Conclusion: the sequence defined by the recurrence relation
an+1=qan is a geometric sequence with common ratio
q.
Worked Examples
Example 1: Basic Solution
The sequence {an} satisfies a1=2 and an+1=3an. Find an.
Solution:
This is of the type an+1=qan, where q=3.
an=a1⋅qn−1=2⋅3n−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 n hours.
Solution:
Let the number of bacteria after n hours be an. Then:
- a1=1
- an+1=2an
This is a geometric-type recurrence with q=2:
an=1⋅2n−1=2n−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 n years?
Solution:
Let the amount after n years be an yuan. Then:
- a1=10000
- an+1=an×(1+5%)=1.05an
This is a geometric-type recurrence with q=1.05:
an=10000⋅1.05n−1
Practice Problems
Exercise 1
The sequence {an} satisfies a1=3 and an+1=2an. Find a6.
Reference Answer(2 个标签)
recurrence relationgeometric sequence
Solution:
This is a geometric-type recurrence with q=2.
a6=3⋅26−1=3⋅32=96
Answer: a6=96
Exercise 2
The sequence {an} satisfies a1=8 and an+1=21an. Find the general term formula.
Reference Answer(2 个标签)
recurrence relationgeometric sequence
Solution:
This is a geometric-type recurrence with q=21.
an=8⋅(21)n−1=8⋅2n−11=2n−18=2n−123=24−n
Answer: an=24−n or an=2n16
Exercise 3
The sequence {an} satisfies a3=12 and an+1=3an. Find a1 and the general term formula.
Reference Answer(2 个标签)
recurrence relationgeometric sequence
Solution:
This is a geometric-type recurrence with q=3, and the general term formula is an=a1⋅3n−1.
From a3=12:
a1⋅33−1=12
a1⋅9=12
a1=34
Therefore the general term formula is:
an=34⋅3n−1=34⋅3n−1=314⋅3n−1=4⋅3n−2
Answer: a1=34, an=34⋅3n−1
Summary
Symbols Used in This Article
| 符号 | 类型 | 读音/说明 | 在本文中的含义 |
|---|
| an,an+1 | 数学符号 | a-sub-n / a-sub-n-plus-one | The nth and (n+1)th terms of the sequence |
| q | 数学符号 | q | The common ratio (a constant) |
| a1 | 数学符号 | a-sub-one | The first term of the sequence |
| n | 数学符号 | n | The term number |
| {an} | 数学符号 | set of a-sub-n | The sequence |
中英对照
| 中文术语 | 英文术语 | 音标 | 说明 |
|---|
| 等比型 | geometric type | /ˌdʒiːəˈmetrɪk taɪp/ | A recurrence of the form an+1=qan |
| 公比 | 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 nth term directly in terms of n |