Sample quiz on recursion formulas
Main home here.
- A recursion formula is given by $t_{n}=t_{n-1}+3,\quad t_{1}=0$. Find $t_{4}$.
- A recursion formula is given by $t_{n}=-2\times t_{n-1},\quad t_{1}=1$. Find $t_{5}$.
- Find a recursion formula for the sequence $1,3,5,7,9,\cdots$.
- Find a recursion formula for the sequence $-1,3,-9,27,-81,\cdots$.
- A recursive formula is given by $t_{n}=a\times t_{n-1}+b,\quad t_{1}=k$. For what values of $a,b,k$ can the sequence be geometric?
- For what values of $a,b,k$ can the recursive formula $t_{n}=a\times t_{n-1}+b,\quad t_{1}=k$ yield an arithmetic sequence?
- Find a recursive formula for the sequence $-2,-5,-8,-11,-14,\cdots$.
- Find a recursive formula for the sequence $16,8,4,2,1,\cdots$.
- A recursive formula is given by $t_{n}=\Big(t_{n-1}\Big)^2+1,\quad t_{1}=1$. Find $t_{5}$.
- A recursive formula is given by $t_{n}=t_{n+1}+b,\quad t_{1}=1$. If $t_{6}=51$, find $b$