SOLUTION: If f(1) = 3 and f(n) = -2f(n-1) + 1, then what is f(5)?

Algebra.Com
Question 1180276: If f(1) = 3 and f(n) = -2f(n-1) + 1, then what is f(5)?
Answer by greenestamps(13200)   (Show Source): You can put this solution on YOUR website!


This is a recursively defined sequence, where each number is found from the preceding number based on a pattern. The recursive definition

f(n) = -2f(n-1) + 1

means each term (f(n), term "n") is found by multiplying the previous term (f(n-1), the preceding term) by -2 and adding 1.

Given: f(1)=3

f(2)=-2*f(1)+1 = -2(3)+1 = -6+1 = -5
f(3)=-2*f(2)+1 = -2(-5)+1 = 10+1 = 11

Continue using the pattern to find f(5).


RELATED QUESTIONS

if f(1)=5 and f(n)=-2f(n-1)+2 then what is the value of... (answered by MathLover1)
if f(1)=3 and f(n)= -2f(n-1) +1, then f(5) =... (answered by jim_thompson5910)
If a sequence is defined recursively by f(0)=2 and f(n+1)=-2f(n)+3 for n>or=0 then f(2)... (answered by greenestamps)
If f(1)=8 and f(n)=1/2f(n-1)+2 then which of the following is the value of... (answered by amarjeeth123)
If f(n+1)=2f(n)+1for every natural number n and f(1)=3, find f(11). (answered by ikleyn)
2. If a sequence is defined recursively by f(0)=2 and f(n+1)=-2f(n)+3 for n≥0 then (answered by MathLover1)
If f(1) = 3 and f(n)=-2f(n-1)+1, then f(5)= ? multiple choice options: -5,11, 21, 43 (answered by Fombitz)
Let f be a function defined by f(n)=2f(n-1)+3f(n-2), where f(1)=3 and f(2) = 1.... (answered by ikleyn)
if f(1)=9 and f(n)=-3f(n-1)+n then what is the value of... (answered by ikleyn)