137k views
1 vote
Can someone pease help

Consider the sequence below.



Complete the recursively defined function to describe this sequence.

Can someone pease help Consider the sequence below. Complete the recursively defined-example-1

2 Answers

7 votes

Answer:

I just took the test and got it right.

Explanation:

Can someone pease help Consider the sequence below. Complete the recursively defined-example-1
User Karthik Arumugham
by
5.8k points
1 vote

ANSWER


f(1) = - 34


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

EXPLANATION

The given sequence is;

-34,-21,-8,5,....

The first term of the sequence is


f(1) = - 34

The common difference is


d = 5 - - 8


d = 5 + 8 = 13

The recursive definition is given by;


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


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

for n=2,3,4,...

User Aaron Krauss
by
5.3k points