182k views
4 votes
I need help with number 16

I need help with number 16-example-1
User Akent
by
8.3k points

2 Answers

4 votes

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

f(1) = 3 eq1

f(2) = f(2-1) - 2

= f(1) - 2. put value from eq1 here

= 3 - 2

= 1

f(3) = f ( 3 - 1 ) - 2

= f(2) - 2

= 1 - 2

= -1

f(4) = f( 4 -1 ) - 2

= f( 3 ) - 2

= -1 - 2

= -3


3,1,-1,-3



User RobLL
by
8.1k points
3 votes

You are correct

for example f(1) = 3

and f(2) = f(2-1) - 2

= f(1) - 2

= 3 - 2 = 1

User Shrishinde
by
8.9k points