37.3k views
0 votes
F(n)=93+4(n-1) Complete the recursive formula of f(n)

User Aphax
by
3.9k points

2 Answers

7 votes

Answer:

f(1)=93

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

Explanation:

As you can see in the picture, the initial value is 93, which is why it's the first part of the equation. The 4 is multiplying the (n-1) part in the equation and as we complete the recursive formula of N, you have to put the numbers in the correct order.

User Keemor
by
4.2k points
6 votes

Answer:

f(1) = 93

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

Explanation:

The recursive formula for an arithmetic sequence is given as:

f(1) = a

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

where a = first term and d = common difference

An arithmetic sequence is in the form:

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

where a = first term and d = common difference

The common difference in f(n) = 93 + 4(n-1) is 4.

The first term is 93.

The recursive formula is therefore:

f(1) = 93

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

User Divisadero
by
5.0k points