An arithmetic/linear sequence grows or decays according to which operations?
Adding or a subtracting a number
What do you need in order to create a recursive arithmetic function?
common difference, a1 and formula for an
What do you need in order to create a recursive geometric function?
common ratio, a1, and formula for an
Find the third term of the sequence:
a1=3
an=an-1+5
A geometric/exponential sequence grows or decays by which operations?
multiplication or division
What do you need in order to create an explicit arithmetic function?
common difference, a0, and an
What do you need in order to create an explicit geometric function?
common ratio, a0, and an
Find the fourth term of the sequence:
an=4n+2
18
A function that moves step by step
Recursive function
Write a recursive function for 1,4,7,10......
a1=1
an=an-1+3
Create a recursive function for the following sequence: 3,9,27,81,.........
f(1)=3
f(n)=3*f(n-1)
Find the third term of the sequence:
a1=5
an=6*an-1
180
A function that can be used to find any number in the sequence
explicit function
Write an explicit function for 1,4,7,10.....
an=3n-2
Create an explicit function for the following sequence: 3,9,27,81,.........
an=1*(3)n
Find the second term of the sequence:
an=36*(1/2)n
9