Sequence
Definition

A sequence is an ordered set of numbers (or terms) determined by a pre-defined rule.


More

Each member of a sequence is called a term of the sequence. A term of a sequence is usually represented by the letter "t". A specific term of a sequence is usually represented by the expression "tn", where "n" is the term number or position of the term in the sequence.


A sequence can be finite (has a countable number of terms) or infinite (with terms continuing indefinitely).

Divider Line

A finite sequence with six terms could be represented as shown below:


t1, t2, t3, t4, t5, t6


In the sequence above, t1 symbolically represents the first term of the sequence, t2 symbolically represents the second term of the sequence, t3 symbolically represents the third term of the sequence, and so on.

Divider Line

A finite sequence with six-thousand terms could be represented as shown below:

t1, t2, t3, . . ., t6000      or      t1, t2, t3, . . ., tn, . . ., t6000

Divider Line

An infinite sequence could be represented as shown below:

t1, t2, t3, . . .      or      t1, t2, t3, . . ., tn, . . .

Divider Line

A sequence without a determining rule is often referred to as a pattern.

Divider Line

A rule can determine each term of a sequence directly (by using an equation), or a rule can determine each term of a sequence recursively (by using preceding terms).


Example One (equation)

Defining Rule

tn = 2n + 3


To generate the sequence, substitute the natural numbers into the equation.


Substitute n = 1, 2, 3, 4 into t(n) = 2n + 3

Sequence: 5, 7, 9, 11, 13, 15, 17, . . .

Sequence: Starting with five, two is added to each term of the sequence to determine the next term of the sequence.


Example Two (recursive)

Defining Rule

t1 = 5

tn = tn-1 + 2


Knowing that the first terms is 5 (t1 = 5), calculate the value of the second term (t2).

Since we need to calculate t2, substitute n = 2 into the second part of the recursive rule (tn = tn-1 + 2)


      t(2) = t(2)-1 + 2

      t2 = t1 + 2                  (But it is known that t1 = 5)

      t2 = 5 + 2

      t2 = 7


Repeat this process to find t3.

Knowing that the first two terms are 5 and 7 (t1 = 5 and t2 = 7), calculate the value of the third term (t3).

Since we need to calculate t3, substitute n = 3 into the second part of the recursive rule (tn = tn-1 + 2)


      t(3) = t(3)-1 + 2

      t3 = t2 + 2                  (But it was calculated that t2 = 7)

      t3 = 7 + 2

      t3 = 9


Repeat this process to find t4.

Knowing that the first three terms are 5, 7 and 9 (t1 = 5, t2 = 7 and t3 = 9), calculate the value of the fourth term (t4).

Since we need to calculate t4, substitute n = 4 into the second part of the recursive rule (tn = tn-1 + 2)


      t(4) = t(4)-1 + 2

      t4 = t3 + 2                  (But it was calculated that t3 = 9)

      t4 = 9 + 2

      t4 = 11


Repeat this process to find as many terms as required.


Sequence: 5, 7, 9, 11, 13, 15, 17, . . .

Sequence: Starting with five, two is added to each term of the sequence to determine the next term of the sequence.


More Equation Examples

Defining Rule (Equation) Example 1: tn = 5n - 4

Defining Rule (Equation) Example 2: tn = 25 - 3n


Defining Rule (Equation) Example 3: tn = 5(2)n

Defining Rule (Equation) Example 4: tn = 2(5)n


Defining Rule (Equation) Example 5: tn = n2


More Recursion Examples

Defining Rule (Recursion) Example 1

t1 = 20

tn = tn-1 - 10


Defining Rule (Recursion) Example 2

t1 = 3

tn = 2tn-1


Defining Rule (Recursion) Example 3

t1 = 1

t2 = 1

tn = tn-2 + tn-1


Defining Rule (Recursion) Example 4

t1 = 2

t2 = 3

t2 = 1

tn = tn-3 x tn-2 x tn-1