Foundations of Sequences
Understand the definition, notation, and types of sequences—including examples, indexing methods, recursive definitions, and the distinction between finite and infinite sequences.
Summary
Read Summary
Flashcards
Save Flashcards
Quiz
Take Quiz
Quick Practice
How does a sequence differ from a set regarding its elements?
1 of 17
Summary
Definition of a Sequence
What Is a Sequence?
A sequence is an ordered list of objects. The key thing that makes a sequence different from a set is that order matters, and the same element can appear multiple times at different positions.
For example, the sequence $(1, 2, 2, 3)$ is different from the sequence $(1, 2, 3, 2)$, even though they contain the same elements. In a set, these would be identical. This ordering property is what makes sequences useful for mathematics—we often care not just about what elements we have, but in what order they appear.
The Formal Definition
Mathematically, we define a sequence more precisely as a function whose domain is an interval of integers. When we write a sequence, we specify:
An index set: the set of allowable integers that tell us which positions exist (often $\mathbb{N} = \{0, 1, 2, 3, \ldots\}$ or $\mathbb{N} = \{1, 2, 3, \ldots\}$)
A term at each position: the value assigned to each index
This functional view is helpful because it clarifies that a sequence is a rule that assigns to each valid index some value.
Notation for Sequences
Since sequences are so common in mathematics, we have standard ways to write them.
The $n$-th term is written as $an$, where $n$ is the index (the position). For example:
$a1$ is the first term
$a2$ is the second term
$an$ is the $n$-th term
We can denote an entire sequence in several ways:
As a full list: $a1, a2, a3, \ldots$ (if infinite)
With interval notation: $(an){n \in \mathbb{N}}$ means "the sequence where $an$ is the term at position $n$, and $n$ ranges over the natural numbers"
With explicit bounds: $(an){n=1}^{10}$ means "the sequence where $n$ runs from $1$ to $10$"
Example: The sequence of positive even numbers can be written as $(2n){n \in \mathbb{N}}$ (starting from $n=1$), which represents $2, 4, 6, 8, \ldots$
Length and Indexing
A finite sequence has a definite first and last term. A finite sequence of length $n$ is sometimes called an $n$-tuple. For example, $(3, 5, 7, 9)$ is a finite sequence of length 4, or a 4-tuple.
An infinite sequence (or singly infinite sequence) has a first term but no last term. It continues forever: $(2, 4, 6, 8, \ldots)$
A bi-infinite sequence extends in both directions and is indexed by all integers $\mathbb{Z}$. We write it as $(\ldots, a{-2}, a{-1}, a0, a1, a2, \ldots)$
The position of each term is called its rank or index. The starting index varies: sometimes we begin counting at $0$, sometimes at $1$, depending on context.
Note: The empty sequence, written as $()$, is a finite sequence with no elements.
Examples of Sequences
The Fibonacci Sequence
One of the most famous sequences in mathematics is the Fibonacci sequence: $0, 1, 1, 2, 3, 5, 8, 13, \ldots$
In this sequence, each term (after the first two) equals the sum of the two preceding terms. This sequence appears throughout nature—in spiral patterns of shells, flower petals, and tree branches.
Function-Valued Sequences
Not all sequences consist of numbers! A sequence can have other mathematical objects as terms, such as functions. For instance, the monomial basis is the sequence $(1, x, x^2, x^3, x^4, \ldots)$, where each term is a polynomial function.
<extrainfo>
This illustrates the generality of the sequence concept—anything can be a term as long as we can list them in order.
</extrainfo>
Defining Sequences by Recursion
Recurrence Relations
Often, we don't define a sequence by giving an explicit formula for the $n$-th term. Instead, we define it recursively using a recurrence relation (or recurrence formula). This is a rule that expresses each term in terms of one or more previous terms.
For example, the Fibonacci sequence is defined by: $$Fn = F{n-1} + F{n-2}$$
This recurrence tells us that each term is the sum of the two previous terms.
Initial Conditions
Here's the crucial point: a recurrence relation alone is not enough to define a sequence. You must also specify initial conditions—enough terms at the start so that the recurrence can generate everything else.
For Fibonacci, we specify: $$F0 = 0, \quad F1 = 1$$
Now we can compute all subsequent terms:
$F2 = F1 + F0 = 1 + 0 = 1$
$F3 = F2 + F1 = 1 + 1 = 2$
$F4 = F3 + F2 = 2 + 1 = 3$
and so on...
Without those initial values, the recurrence relation wouldn't uniquely determine the sequence.
Linear Recurrences with Constant Coefficients
A particularly important class of recurrence relations are linear recurrences with constant coefficients. These have the general form:
$$an = c1 a{n-1} + c2 a{n-2} + \cdots + ck a{n-k}$$
where $c1, c2, \ldots, ck$ are fixed constants. This says: each term is a weighted sum of the previous $k$ terms.
Examples:
Fibonacci ($k=2$, $c1=1$, $c2=1$): $an = a{n-1} + a{n-2}$
A simple doubling sequence ($k=1$, $c1=2$): $an = 2a{n-1}$ (each term is twice the previous)
These linear recurrences are particularly nice because they have well-developed theory for solving them, but that's beyond our current scope.
Summary: Sequences are ordered lists where we can have repetitions. They're either finite or infinite, and can be defined either by explicit formulas or by recursive rules. The notation might seem tricky at first, but it becomes natural with practice—always remember that $an$ just means "the term at position $n$."
Flashcards
How does a sequence differ from a set regarding its elements?
The order of elements matters in a sequence, and elements can be repeated.
What is the formal definition of a sequence as a function?
A function whose domain is an interval of integers (the index set).
In the formal functional definition of a sequence, what does the function's value at each integer index represent?
The term of the sequence.
How is the $n$th term of a sequence typically written in subscript notation?
$a{n}$ (where $n$ denotes the index).
What are two common ways to denote an entire sequence?
$(a{n}){n \in \mathbb{N}}$
$a{1}, a{2}, a{3}, \dots$
What is the length of a finite sequence defined as?
The number of its terms.
What is the index set of a sequence?
The set of allowable indices (often the set of natural numbers $\mathbb{N}$).
How is a sequence defined by an explicit formula written, such as for even positive integers?
$(2n){n \in \mathbb{N}}$
How would a finite sequence of squares from $n=1$ to $10$ be written using bounded index notation?
$(n^{2}){n=1}^{10}$
What is a bi‑infinite sequence?
A sequence indexed by all integers $\mathbb{Z}$, written as $(a{n}){n \in \mathbb{Z}}$.
How is each subsequent term calculated in the Fibonacci sequence?
It is the sum of the two preceding terms.
What is the recurrence relation and initial terms for the Fibonacci sequence?
$F{n} = F{n-1} + F{n-2}$ with $F{0}=0$ and $F{1}=1$.
What does a recursive definition (recurrence relation) provide for a sequence?
A rule that expresses each term in terms of earlier terms.
What is required alongside a recurrence relation to generate all subsequent terms?
Sufficient initial terms (initial conditions).
What is the general form of a linear recurrence with constant coefficients ($c{i}$)?
$a{n} = c{1}a{n-1} + c{2}a{n-2} + \dots + c{k}a{n-k}$
What is a finite sequence of length $n$ called?
An $n$‑tuple.
What characterizes a singly infinite (one-sided) sequence?
It has a first element but no last element.
Quiz
Foundations of Sequences Quiz Question 1: How is the nth term of a sequence typically denoted?
- With a subscript: $a_{n}$ (correct)
- With a superscript: $a^{n}$
- Inside parentheses: $(a,n)$
- Using a colon: $a:n$
Foundations of Sequences Quiz Question 2: How is each term of the Fibonacci sequence generated?
- By adding the two preceding terms (correct)
- By multiplying the previous term by 2
- By subtracting the previous term from the next
- By taking the factorial of the index
Foundations of Sequences Quiz Question 3: Which of the following is an example of a sequence whose terms are functions?
- $(1,\;x,\;x^{2},\;x^{3},\dots)$ (correct)
- $(2,\;4,\;6,\;8,\dots)$
- $(\pi,\;e,\;\sqrt{2},\dots)$
- $(\text{red},\;\text{blue},\;\text{green},\dots)$
Foundations of Sequences Quiz Question 4: What does the notation $(2n)_{n\in\mathbb{N}}$ represent?
- The sequence of even positive integers (correct)
- The sequence of squares of natural numbers
- The sequence of odd integers
- The sequence of multiples of three
Foundations of Sequences Quiz Question 5: A bi‑infinite sequence is indexed by which set?
- The set of all integers $\mathbb{Z}$ (correct)
- The natural numbers $\mathbb{N}$ only
- The positive integers $\mathbb{Z}^{+}$
- The real numbers $\mathbb{R}$
Foundations of Sequences Quiz Question 6: Why are initial conditions necessary in a recursive definition?
- To generate all subsequent terms uniquely (correct)
- To ensure the sequence is finite
- To guarantee the sequence is strictly increasing
- To define the index set of the sequence
How is the nth term of a sequence typically denoted?
1 of 6
Key Concepts
Types of Sequences
Sequence (mathematics)
Bi‑infinite sequence
Finite sequence
Infinite sequence
n‑tuple
Recurrence Relations
Fibonacci number
Recurrence relation
Linear recurrence with constant coefficients
Sequence Properties
Index set
Function‑valued sequence
Definitions
Sequence (mathematics)
An ordered collection of elements, possibly with repetitions, formally defined as a function from an integer index set to a set of objects.
Fibonacci number
Elements of the integer sequence where each term is the sum of the two preceding terms, starting with 0 and 1.
Recurrence relation
An equation that defines each term of a sequence as a function of preceding terms.
Linear recurrence with constant coefficients
A recurrence where each term is a linear combination of a fixed number of earlier terms with constant multipliers.
Bi‑infinite sequence
A sequence indexed by all integers ℤ, extending infinitely in both positive and negative directions.
n‑tuple
A finite sequence of length n, often regarded as an ordered list of n elements.
Index set
The set of allowable indices (often ℕ or ℤ) that determines the domain of a sequence’s defining function.
Function‑valued sequence
A sequence whose terms are themselves functions, such as the monomial basis (1, x, x², …).
Finite sequence
A sequence with a last term, having a well‑defined length.
Infinite sequence
A sequence with no last term, extending indefinitely in one direction.