Basic Concepts of Sequences

Sequences act as functions on positive integers, bridging discrete steps to the continuous ideas of limits and calculus.

What Is a Sequence?

Sequence

A sequence is a function whose independent variable is a positive integer. For each nNn \in \mathbb{N}, the value is denoted ana_n, and the whole sequence is written {an}\{a_n\}.

Function view
a:NR,a(n)=ana : \mathbb{N} \to \mathbb{R}, \quad a(n) = a_n

Typical Examples

  • Natural numbers: an=na_n = n (linear growth)
  • Harmonic: an=1na_n = \dfrac{1}{n} (used in limits/estimates)
  • Alternating: an=(1)na_n = (-1)^n (sign flips with period 22)

Ways to Represent Sequences

  1. General term: give ana_n directly. Example an=2n+1a_n = 2n + 13,5,7,3, 5, 7, \dots
  2. Recurrence: generate an+1a_{n+1} from earlier terms. Example a1=1,  an+1=2ana_1 = 1,\; a_{n+1} = 2a_n1,2,4,8,1, 2, 4, 8, \dots
  3. Listing: write early terms for intuition, e.g., 1,12,13,1, \tfrac12, \tfrac13, \dots
Link between general term and recurrence

If a recurrence an+1=f(an)a_{n+1} = f(a_n) can be iterated, the closed form may be found by accumulating the relation. Conversely, a general term can often yield a recurrence by rearrangement.

Common Types

Arithmetic sequences

Consecutive terms differ by a constant dd.

Arithmetic general term
an=a1+(n1)da_n = a_1 + (n-1)d

Example: 2,5,8,11,2, 5, 8, 11, \dots with d=3d = 3. If d>0d>0 the sequence increases; if d<0d<0 it decreases.

Geometric sequences

Consecutive terms have a constant ratio qq.

Geometric general term
an=a1qn1a_n = a_1 \cdot q^{\,n-1}

Example: 3,6,12,24,3, 6, 12, 24, \dots with q=2q = 2. When q<1|q| < 1, an0a_n \to 0, a classic convergence case.

Basic Properties

Boundedness

Bounded sequence

A sequence {an}\{a_n\} is bounded if M>0\exists M>0 with anM|a_n| \le M for all nn.

Example: {1n}\left\{\tfrac{1}{n}\right\} is bounded; {n}\{n\} is unbounded.

Monotonicity

  • Increasing: an+1ana_{n+1} \ge a_n for all nn
  • Decreasing: an+1ana_{n+1} \le a_n for all nn

A sequence that is both monotonic and bounded converges—a key bridge to limits.

Periodicity and Parity

  • Periodic: TN\exists T \in \mathbb{N} with an+T=ana_{n+T} = a_n (e.g., (1)n(-1)^n with T=2T=2).
  • Even/odd patterns: extending {an}\{a_n\} to a function can mirror function parity concepts.

Exercises

练习 1

Classify the sequence and give the parameter:

  1. an=43na_n = 4 - 3n
  2. bn=5(12)n1b_n = 5 \cdot \left(-\dfrac{1}{2}\right)^{n-1}
Reference Answer(3 个标签)
sequencesarithmetic sequencesgeometric sequences
  1. an+1an=3a_{n+1} - a_n = -3 ⇒ arithmetic, d=3d = -3.
  2. bn+1bn=12\dfrac{b_{n+1}}{b_n} = -\tfrac12 ⇒ geometric, q=12q = -\tfrac12.

练习 2

Sequence {cn}\{c_n\} satisfies c1=2c_1 = 2, cn+1=cn+2nc_{n+1} = c_n + 2^{n}. Find a closed form.

Reference Answer(3 个标签)
sequencesarithmetic sequencesgeometric sequences

Sum the recurrence: cn+1=2+k=1n2k=2+(2n+12)=2n+1c_{n+1} = 2 + \sum_{k=1}^{n} 2^{k} = 2 + (2^{n+1}-2) = 2^{n+1}, so cn=2nc_n = 2^{n}.


总结

本文出现的符号

符号类型读音/说明在本文中的含义
N\mathbb{N}数学符号natural numbers索引的取值集合
R\mathbb{R}数学符号Real numbers项的取值集合
{an}\{a_n\}数列记号sequence a_n一个数列
ana_n元素符号a sub nnn
dd参数difference等差数列公差
qq参数quotient等比数列公比

中英对照

中文术语英文术语音标说明
数列sequence/ˈsiːkwəns/以正整数为索引的函数
通项公式general term/ˈdʒenərəl tɜːrm/直接给出第 nn
递推公式recurrence relation/rɪˈkɜːrəns rɪˈleɪʃən/通过前项生成后项
等差数列arithmetic sequence/ˌærɪθˈmetɪk ˈsiːkwəns/相邻项差为常数
等比数列geometric sequence/ˌdʒiːəˈmetrɪk ˈsiːkwəns/相邻项比为常数
有界bounded/ˈbaʊndɪd/绝对值被同一常数约束
单调monotonic/ˌmɒnəˈtɒnɪk/项随索引一致增或减