Series Flashcards

1
Q
# _define_:
sequence
A

An

  • *ordered list** of
  • *numbers**
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
# _define_:
explicit formula
A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
# _define_:
recursive formula
A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
# _define_:
arithmetic sequence
A

A

  • *sequence** with a
  • *common difference**

e.g.:
{1, 4, 7, 10}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
# _define_:
geometric sequence
A

A

  • *sequence** with a
  • *common ratio**

e.g.:
{1, 2, 4, 8, 16, 32, 64 . . .}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the
explicit formula
for an
arithmetic sequence?

A

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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the
explicit formula
for a
geometric sequence?

A

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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Given
arithmetic series

{a, b, c, d},

how do you
determine the
common difference?

A

Any term
minus
the
previous term

b − a
or
c − b
or
d − c

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Given
geometric series

{a, b, c, d},

how do you
determine the
common ratio?

A

Any term
divided by
the
previous term

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is an
explicit formula
for the following
sequence?

{10, 13, 16, 19, …}

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a
recursive formula
for the following
sequence?

{10, 13, 16, 19, …}

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is an
explicit formula
for the following
sequence?

{3, 6, 12, 24, 48, …}

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a
recursive formula
for the following
sequence?

{3, 6, 12, 24, 48, …}

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does
summation notation
do?

A

Instructs to

  • *sum** the
  • *elements** of a
  • *sequence**
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you

  • *write**
  • *summation notation**?
A

Σ: summation sign (sigma)

  • i:*index of summation
    1: starting point (lower limit of summation)
  • n:*stopping point (upper limit of summation)
  • ai:*argument
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How many
terms
are there in this
summation?

A

Nine

Start at 1; stop at 9

First term: 1

Remaining terms: 2, 3, 4, 5, 6, 7, 8, 9

Total: Nine

17
Q

How many
terms
are there in this
summation?

A

Ten

Start at 0; stop at 9

First term: 0

Remaining terms: 1, 2, 3, 4, 5, 6, 7, 8, 9

Total: Ten

18
Q

What is the
formula
for a
geometric series?

A

Sn = a • (1 − rn)
(1 − r)

19
Q

What is the
formula
for an
arithmetic series?

A

Sn = n • (a1 + an)
2

The
average of the first and last terms
times the
number of terms