Recursive Sequence
Recursive Sequence
MATHEMATICS
April 2024
Contents
1 Recursive Sequence and Induction. 2
1.1 Sequence. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.2 Recursive Sequence. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3 Mathematical Induction. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1
1. Recursive Sequence and Induction.
1.1 Sequence.
Definition 1.1.1. A sequence is an arrangement of numbers in a definite order according to
some rule.
A sequence can be defined by giving an explicit formula for its nth term. For example, a sequence
1, 3, 5, 7, . . . can be represented explicitly as an = 2n − 1, n ≥ 1.
Find a3 , a4 , a5 and a6 .
2. Write an explicit rule for each of the following recursive rule.
(a) a1 = 25, an = an−1 − 10.
(b) a1 = 6, an = −0.5an−1 .
(c) a1 = 13, an = −3an−1 .
(d) a1 = −2, an = 9an−1 .
2
Section 1.2. Recursive Sequence. Page 3
Definition 1.2.3. Suppose an is a sequence that satisfies a certain recurrence relation and initial
conditions. An explicit formula for an called a solution to the recurrence relation.
Iteration method is the basic method for finding an explicit formula (solution) for a recursively
defined sequence.
Given a sequence a0 , a1 , a2 , . . . an be a sequence defined by a recurrence relation and initial
conditions, iteration method requires one to start from the initial conditions, calculate successive
terms of the sequence until a pattern is developed and use the obtained pattern to guess an
explicit formula.
a1 =1
a2 = 2(1) + 2 = 21 + 1
a3 = 2(21 + 1) + 1 = 22 + 21 + 1
a4 = 2(22 + 21 + 1) + 1 = 23 + 22 + 21 + 1
..
.
an = 2n−1 + 2n−2 +· · · + 22 + 21 + 1
Since iteration method involves guessing of a formula from established patterns, it is easy to
make a mistake. We check the correctness of the obtained explicit formula by the method of
mathematical induction.
Example 1.3.2. We use mathematical induction to check the correctness of the explicit formula
obtained in Example 1.2.4.
Initial step: 2an−1 + 1 = 2n − 1, LHS: a1 = 1 (Given) and RHS a1 = 21 − 1 = 1 hence an is
true for initial conditions.
Inductive step: Suppose that an is true for an arbitrary integer k i.e ak = 2k − 1. We want to
show that an is true for n = k + 1.
From an = 2an−1 + 1,
ak+1 = 2ak + 1
= 2(2k − 1) + 1
= 2k+1 − 1
Also from an = 2n − 1, we have ak+1 = 2k+1 − 1. Since the basis and inductive steps have been
proved, it follows by mathematical induction that the given formula holds for all integers n ≥ 1.