Series Flashcards
# _define_: sequence
An
- *ordered list** of
- *numbers**
# _define_: explicit formula
A
sequence is defined
explicitly if it
allows direct computation for
any term in the sequence
No prior term is needed
e.g.:
an = 4 + 3(n − 1)
# _define_: recursive formula
A
sequence is defined
recursively if the
first term is given and
there’s a way to
determine the nth term
using the
term that precedes it
The prior term is needed
e.g.:
a1 = 4
an = an−1 + 3
# _define_: arithmetic sequence
A
- *sequence** with a
- *common difference**
e.g.:
{1, 4, 7, 10}
# _define_: geometric sequence
A
- *sequence** with a
- *common ratio**
e.g.:
{1, 2, 4, 8, 16, 32, 64 . . .}
What is the
explicit formula
for an
arithmetic sequence?
an = a + d(n − 1)
a<sub>n</sub> = *n*th term of the sequence a = first term of the sequence n = term index d = common difference
What is the
explicit formula
for a
geometric sequence?
an = arn−1
a<sub>n</sub> = *n*th term of the sequence a = first term of the sequence n = term index r = common ratio
Given
arithmetic series
{a, b, c, d},
how do you
determine the
common difference?
Any term
minus the
previous term
b − a
or
c − b
or
d − c
Given
geometric series
{a, b, c, d},
how do you
determine the
common ratio?
Any term
divided by the
previous term

What is an
explicit formula
for the following
sequence?
{10, 13, 16, 19, …}

What is a
recursive formula
for the following
sequence?
{10, 13, 16, 19, …}

What is an
explicit formula
for the following
sequence?
{3, 6, 12, 24, 48, …}

What is a
recursive formula
for the following
sequence?
{3, 6, 12, 24, 48, …}

What does
summation notation
do?
Instructs to
- *sum** the
- *elements** of a
- *sequence**

How do you
- *write**
- *summation notation**?
Σ: summation sign (sigma)
- i:*index of summation
1: starting point (lower limit of summation) - n:*stopping point (upper limit of summation)
- ai:*argument

How many
terms
are there in this
summation?

Nine
Start at 1; stop at 9
First term: 1
Remaining terms: 2, 3, 4, 5, 6, 7, 8, 9
Total: Nine

How many
terms
are there in this
summation?

Ten
Start at 0; stop at 9
First term: 0
Remaining terms: 1, 2, 3, 4, 5, 6, 7, 8, 9
Total: Ten

What is the
formula
for a
geometric series?
Sn = a • (1 − rn)
(1 − r)
What is the
formula
for an
arithmetic series?
Sn = n • (a1 + an)
2
The
average of the first and last terms
times the
number of terms