15.5k views
0 votes
A sequence is defined recursively by the formula f(n+1)=f(n)+3. The first term of the sequence is -4 what is the next term in the sequence ?

-7
-1
1
7

User JMSH
by
8.2k points

2 Answers

1 vote

Answer:

The next term is -1

Explanation:


\left\{\begin{array}{ccc}f(1)=-4\\f(n+1)=f(n)+3\end{array}\right\\\\\text{Put n = 1 to the recursive formula:}\\\\f(1+1)=f(2)=f(1)+3\to f(2)=-4+3=-1

User Gabriel Sadaka
by
9.3k points
4 votes

Answer:

The next term of the sequence is -1.

Explanation:

Given recursive formula,

f(n+1) = f(n) + 3,

For the second term,

Put n = 1,


f(1+1) = f(1) + 3,


\implies f(2) = f(1) + 3

Since, f(1) = - 4, ( given )


\implies f(2) = -4 + 3 = -1

Hence, the next term in the sequence would be -1,

Second option is correct.

User Mauretto
by
8.2k points