Step-by-step explanation:
Hope it helps you in your learning process.
Answer:
d
Step-by-step explanation:
it should be the one with the greatest power to the lowest power If I remember correctly.
Part a I am pretty sure it is a pattern so 4 plus 2 is 6, 6 plus 3 is nine and then 9 plus 4 is 13 Then 13 plus 5 is 18
Answer is 18
In part b he will not finish his work he has to get to 274 and he only gets to about 50 something
Hope this helps
Answer:
recursive: f(0) = 7; f(n) = f(n-1) -8
explicit: f(n) = 7 -8n
Step-by-step explanation:
The sequence is an arithmetic sequence with first term 7 and common difference -8. Since you're numbering the terms starting with n=0, the generic case will be ...
recursive: f(0) = first term; f(n) = f(n-1) + common difference
explicit: f(n) = first term + n·(common difference)
To get the answer above, fill in the first term and common difference values.