Cristian M. answered 06/22/22
Researcher and Analyst Offers Patient and Clear Tutoring
Write a recursive formula for the sequence.
-9, 21, 51, 81, 111, ...
So this is an arithmetic sequence, meaning that some number (positive or negative) is added to the number before it, and that number never changes. So look from -9 to 21. We went from smaller to bigger, so perhaps the pattern here is some positive number that is added to each term... -9 + 21 is 30 (to figure that out, you could do 21 - (-9) = 30). Also, 21 + 30 = 51, 51 + 30 = 81, etc. There is a pattern! 30 gets added to a term in the sequence to get the next term. Here's how we express this mathematically:
Let an be a term in the sequence (specifically, the nth term), and let an+1 be the next term (one term after the previous term, hence the n + 1). Then:
an+1 = an + 30. <----- This is your recursive formula to get from one term to the term right after it.
How to use the formula?
The first term, or term n = 1, is -9. -9 + 30 = 21. This is the second term, or n+1 = 1 + 1, or n+1 = 2.
The second term, or term n = 2, is 21. 21 + 30 = 51. This is the third term, or n+1 = 2 + 1, or n+1 = 3.
And so forth.
There is a more general formula to get from the first term of the sequence to any term after it. This is why you might have an arithmetic sequence formula like this in your books:
an = a1 + (n-1)d
an just refers to a number in the sequence, and a1 is the first term of the sequence. The d refers to the number that keeps getting added (so here, d = 30), and n-1 is there to catapult us to some number in the sequence. For instance, if we want the 68th term of the sequence (which really means we're adding 30 to the first term of the sequence 67 times), here's what we'll do:
an = a1 + (n-1)d
a68 = (-9) + (68-1)(30) <--- since we want the 68th term of the sequence. -9 is the first number in the sequence, and 30 is the thing being added to each term
a68 = -9 + (67)(30) <---- do this by hand or in the calculator correctly, remembering order of operations
a68 = 2001 <----- better than adding 30 67 times, right? That's what the n-1 does for us.
So here's your most general recursive formula, and most likely the answer you need:
an = -9 + (n-1)(30)
I'll rearrange the terms a bit:
an = -9 + 30(n-1) <---- general recursive formula
------------------------------------------------------
The second part of this problem looks exactly like this, and the pattern is clear. Your turn. :)
I hope this helps!