70.8k views
2 votes
What is the recrusive formula for a(n)=-31-7(n-1)

User Miljon
by
8.2k points

1 Answer

1 vote

Answer: a(n) = a(n-1) - 7, with a(1) = -31.

Explanation:

In a recursive sequence, each term is defined by the previous term(s) and some fixed formula or rule. In this case, the formula is given as a(n) = -31 - 7(n-1), which means that each term is obtained by subtracting 7 from the previous term, starting with a(1) = -31. This can be expressed recursively as:

a(n) = a(n-1) - 7

with the initial condition a(1) = -31. This formula says that to get the nth term, we subtract 7 from the (n-1)th term. So, for example:

a(2) = a(1) - 7 = -31 - 7 = -38

a(3) = a(2) - 7 = -38 - 7 = -45

a(4) = a(3) - 7 = -45 - 7 = -52

and so on.

User Bruno Bronosky
by
8.1k points

Related questions

1 answer
4 votes
54.6k views
asked Apr 25, 2024 54.0k views
Komelgman asked Apr 25, 2024
by Komelgman
8.2k points
1 answer
1 vote
54.0k views
asked Feb 11, 2019 104k views
Sadet asked Feb 11, 2019
by Sadet
8.2k points
2 answers
1 vote
104k views