The Type aₙ₊₁ = aₙ + d

This is the simplest type of recurrence relation, and it corresponds directly to an arithmetic sequence.

The Recurrence Relation

Arithmetic-type recurrence relation
an+1=an+d(d is a constant)a_{n+1} = a_n + d \quad (d \text{ is a constant})

Meaning: each term is a fixed constant dd more than the previous term.

Solution Method

Starting from the recurrence relation:

a2=a1+da3=a2+d=a1+2da4=a3+d=a1+3d⋮an=a1+(n−1)d\begin{aligned} a_2 &= a_1 + d \\ a_3 &= a_2 + d = a_1 + 2d \\ a_4 &= a_3 + d = a_1 + 3d \\ &\vdots \\ a_n &= a_1 + (n-1)d \end{aligned}
The general term formula
an=a1+(n−1)da_n = a_1 + (n-1)d

This is exactly the general term formula of an arithmetic sequence!

Worked Examples

Example 1: Basic Solution

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

Solution:

This is of the type an+1=an+da_{n+1} = a_n + d, where d=5d = 5.

an=a1+(n−1)d=3+(n−1)×5=5n−2a_n = a_1 + (n-1)d = 3 + (n-1) \times 5 = 5n - 2

Example 2: A Practical Application

A company made a profit of 1 million yuan in its first year, and its profit increases by 0.2 million yuan every year thereafter. Find the profit in the nnth year.

Solution:

Let the profit in the nnth year be ana_n (in ten-thousand yuan). Then:

  • a1=100a_1 = 100
  • an+1=an+20a_{n+1} = a_n + 20

This is an arithmetic-type recurrence with d=20d = 20:

an=100+(n−1)×20=20n+80 (ten-thousand yuan)a_n = 100 + (n-1) \times 20 = 20n + 80 \text{ (ten-thousand yuan)}

Practice Problems

Exercise 1

The sequence {an}\{a_n\} satisfies a1=−2a_1 = -2 and an+1=an+3a_{n+1} = a_n + 3. Find a10a_{10}.

Reference Answer(2 个标签)
recurrence relationarithmetic sequence

Solution:

This is an arithmetic-type recurrence with d=3d = 3.

a10=a1+(10−1)×3=−2+27=25a_{10} = a_1 + (10-1) \times 3 = -2 + 27 = 25

Answer: a10=25a_{10} = 25

Exercise 2

The sequence {an}\{a_n\} satisfies a1=5a_1 = 5 and an+1−an=−2a_{n+1} - a_n = -2. Find the general term formula.

Reference Answer(2 个标签)
recurrence relationarithmetic sequence

Solution:

an+1−an=−2a_{n+1} - a_n = -2 means an+1=an−2a_{n+1} = a_n - 2, an arithmetic-type recurrence with d=−2d = -2.

an=5+(n−1)×(−2)=5−2n+2=7−2na_n = 5 + (n-1) \times (-2) = 5 - 2n + 2 = 7 - 2n

Answer: an=7−2na_n = 7 - 2n

Exercise 3

The sequence {an}\{a_n\} satisfies a3=10a_3 = 10 and an+1=an+4a_{n+1} = a_n + 4. Find a1a_1 and the general term formula.

Reference Answer(2 个标签)
recurrence relationarithmetic sequence

Solution:

This is an arithmetic-type recurrence with d=4d = 4, and the general term formula is an=a1+(n−1)×4a_n = a_1 + (n-1) \times 4.

From a3=10a_3 = 10: a1+2×4=10a_1 + 2 \times 4 = 10 a1=2a_1 = 2

Therefore the general term formula is: an=2+4(n−1)=4n−2a_n = 2 + 4(n-1) = 4n - 2

Answer: a1=2a_1 = 2, an=4n−2a_n = 4n - 2


Summary

Symbols Used in This Article

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

中英对照

中文术语英文术语音标说明
递推关系recurrence relation/rɪˈkɜːrəns rɪˈleɪʃən/A relation defining later terms from earlier ones
等差型arithmetic type/ˌærɪθˈmetɪk taɪp/A recurrence of the form an+1=an+da_{n+1} = a_n + d
公差common difference/ˈkɒmən ˈdɪfrəns/The difference between adjacent terms of an arithmetic sequence
通项公式general term formula/ˈdʒenərəl tɜːm ˈfɔːmjələ/A formula expressing the nnth term directly in terms of nn