LP1- recursive.notebook

LP1­ recursive.notebook
March 14, 2016
Warm Up:
If
, then what does
equal?
1
LP1­ recursive.notebook
9:
Unit
ces
n
e
u
Seq
ries
e
S
&
March 14, 2016
Recursive Sequences
sequence-
recursive sequence-
The Pell numbers can be defined recursively by the formula:
p(n)=2p(n-1)+p(n-2). If p(1)=0, and p(2)=1, then what is the value of p(6)?
2
LP1­ recursive.notebook
March 14, 2016
Recursive Sequence Practice:
1) Find the first four terms of the recursive sequence defined below.
Let's talk notation!
2) Find the third term in the recursive sequence , where .
3
LP1­ recursive.notebook
March 14, 2016
Find the first four terms of the sequence defined by a1=½ and an+1=1-an
If f(1)=3 and f(n)=-2f(n-1), then what is the value of f(5)?
4
LP1­ recursive.notebook
March 14, 2016
Use the recursive sequence defined below to express the next three terms as
fractions reduced to lowest terms.
a1=2
an=3(an-1)-2
If a sequence is defined recursively by f(0)-2 and f(n+1)=-2f(n)+3 for n≥0, then
what is the value of f(2)?
5
LP1­ recursive.notebook
March 14, 2016
Homework: worksheet
6