11.5k views
5 votes
A sequence has its first term equal to 3, and each term of the sequence is obtained by adding 5 to the previous term. If f(n) represents the nth term of the sequence, which of the following recursive functions best defines this sequence?

f(1) = 3 and f(n) = f(n − 1) + 5; n > 1
f(1) = 5 and f(n) = f(n − 1) + 3; n > 1
f(1) = 3 and f(n) = f(n − 1) + 5n; n > 1
f(1) = 5 and f(n) = f(n − 1) + 3n; n > 1

User Nadeesha
by
8.2k points

2 Answers

0 votes
f(1) = first term = 3 so its either a or c
when N > 1 ( that is from second term on) you add 5
So the answer is a

User IkiK
by
8.0k points
5 votes
Here, first term is 3, So, f(1) = 3

Now, difference between two consecutive integer = 5,
So, n = (n-1) + 5

In short, Your Answer would be Option A) f(1) = 3 and f(n) = f(n − 1) + 5; n > 1

Hope this helps!
User Jan Pfeifer
by
8.1k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.

9.4m questions

12.2m answers

Categories