Quiz 2 Flashcards

(13 cards)

1
Q

Closed Formula Definition

A

A closed formula for a sequence (a_n) is a formula for a_n in terms of n

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

Recursive Formula

A

A recursive formula for (a_n) has two parts:

  1. A recurrence relation which relates a_n to previous term(s) in the sequence
  2. initial conditions, which gives the values for the first few terms of the sequences for the recurrence relation to be useful
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Square Numbers

A

The sequence (s_n)_{n >= 1} has closed formula s_n = n^2

Ex) 1, 4, 8, 16, 25, …

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

Triangular Numbers

A

The sequence (T_n)_{n >= 1} has closed formula T_n = n(n+1)/2

Ex) 1, 3, 6, 10, 15, 21, …

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

Powers of 2

A

The sequence (a_n)_{n >= 0} with closed formula: a_n = 2^n

Ex) 1, 2, 4, 8, 16, 32, …

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

Fibonacci Numbers

A

Defined recursively by: F_n = F_{n-1} + F_{n-2} with F_1 = F2 = 1

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

Geometric Sequences

A

The ratio between two consecutive terms of the sequence is constant

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

K-constant sequences

A

The closed formula for a sequence will be a degree k polynomial if and only if the sequence is k-constant (ie. the kth sequence of differences is constant)

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

Sequence

A

Ordered list of numbers

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

Arithmetic Sequence

A

the difference between two consecutive terms of the sequence is constant

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

Telescoping only works if

A

a. recurrence depends only on previous term, with coefficient 1

b. can find closed formula for partial sum of non-recurrent part

If both a and b are true EXCEPT that the coefficient doesn’t have to be 1, we can use iteration

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

Characteristic Root Technique

A

Let x, y be real numbers. A recurrence relation of the form: a_n = x(a_n-1) + y(a_n-2)

is satisfied by the sequence 1, t, t^2, t^3, … (t =/ 0 ) if and only if: t^2 - xt - y = 0

If both 1, r, r^2, r^3, … and 1, q, q^2, q^3, … satisfy this same recurrence relation, then so does: a_n = cr^n + dq^n for any numbers c and d

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

Closed Formula for the Fibonacci Sequence is

A

F_n = 1/sqrt(5) (1 + sqrt(5))^n / 2 - 1/sqrt(5) (1-sqrt(5) / 2)^ n

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