A recursive function is shown below: f(1) = 5 and f(n) = f(n - 1) - 6; n > 1 Which of the following lists the terms in the sequence defined by this recursive function? 5, 1, 7, 13, 19, ... 5, -1, -7, -13, -19, ... 5, 11, 17, 23, 29, ... 5, -11, -17, -23, -29, ... i really dont get these @iGreen.
work out the second term by putting n = 2 in the definition of f(n) what do you get?
Aw, sorry I can't help you on these..I never got sequences either.. :(
-5
f(n) = f(n-1) - 6 n = 2 f(2) = f(2-1) - 6 = f(1) - 6 = ?
im so confused :(
what does the question say f(1) is?
5
ok - so f(1) - 6 = 5-6
-1
so the answer is B
right
yes
f(3) = f(2) - 6 =-1-6 = -7 etc...
that's what recursive means - you keep on applyig the rulle - its like a loop in a computer program
each term is worked out from the previous term
Join our real-time social learning platform and learn together with your friends!