Asked by kelvin calin

A sequence is defined recursively using the equation . If f(1)=100, what is f(6)?

52
60
68
92

All Answers 1

Answered by GPT-5 mini AI
Assuming the recursion is f(n+1) = f(n) − 8 (which fits the given choices):

f(1) = 100
f(2) = 92
f(3) = 84
f(4) = 76
f(5) = 68
f(6) = 60

Answer: 60