139k views
4 votes
What is the 7th term in the sequence

a(1 )=12

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

I need help finding the recursive formula.

1 Answer

2 votes

Answer:

Explicit form:
a_n=8+4n

Seventh term:
a_7=36

You gave the recursive form:


a_n=a_(n-1)+4 \text{ with } a_1=12

Explanation:

You already have the recursive formula which is:


a_n=a_(n-1)+4 where
a_1=12.

Maybe you looking for the explicit form and also the 7th term?

You were just looking for the 7th term. Sometimes you can read the recursive formula pretty easily and understand the pattern that is happening.


a_(n-1) is the term right before
a(n). Just like
a_5 would be the term right before
a_6.

Anyways becak to our recursive for a sequence that was given:


a_(n)=a_(n-1)+4 says term=previous term+4.

So you adding 4 over and over to generate the terms of a sequence. This is arithmetic sequence because it is going up by same number (or could go down by same number). The common difference is 4.


a_1=12


a_2=12+4=16


a_3=16+4=20


a_4=20+4=24


a_5=24+4=28


a_6=28+4=32


a_7=32+4=36

Now if you don't like that. You could just blindly without trying to understand the meaning of it just plug numbers in:


a_1=12

For if we wanted to know the 2nd term; we would plug in 2 for n:


a_2=a_(2-1)+4


a_2=a_1+4


a_2=12+4


a_2=16

Plug in 3 for the 3rd term:


a_3=a_(3-1)+4


a_3=a_2+4


a_3=16+4


a_3=20

Plug in 4 for the 4th term:


a_4=a_(4-1)+4


a_4=a_3+4


a_4=20+4


a_4=24

Plug in 5 for the 5th term:


a_5=a_(5-1)+4


a_5=a_4+4


a_5=24+4


a_5=28

Plug in 6 for the 6th term:


a_6=a_(6-1)+4


a_6=a_5+4


a_6=28+4


a_6=32

Plug in 7 for the 7th term:


a_7=a_(6-1)+4


a_7=a_5+4


a_7=32+4


a_7=36

Now if you look at the points we just got (I will just go up to 4 terms):

n (treat as x) | 1 2 3 4

a(n) (treat as y| 12 16 20 24

The explicit form in not in terms of other terms of the sequence. You are looking here for an equation that relates n (x) to a(n) (y).

I'm just going to use x and y until the end where I will replace them back in terms of n and a(n).

This is a line because the's rise/run (the slope) is the same per choosing of points.

That is the following is true:


(16-12)/(2-1)=(20-16)/(3-2)=(24-20)/(4-3) son on....

These all the the value 4, the same number that the arithmetic sequence is going up by.

So in an arithmetic sequence, the common difference is the slope of the line.

I'm going to use point-slope formula which is
y-y_1=m(x-x_1) where
(x_1,y_1) is a point on the line and
m is the slope.

So we have m=4 and
(x_1,y_1) could be any of the 7 we found, but I will choose (1,12) for it:


y-12=4(x-1)

Add 12 on both sides:


y=12+4(x-1)


a_n=12+4(n-1).

This is actually in the form of most books formulas for an explicit form which is
a_n=a_1+d(n-1) where
a_1 is the first term and d is the common difference.

So another way to do the problem:

You would have to know the following are equivalent:


a_n=a_(n-1)+d with
a_1 \text{ is given}

and


a_n=a_1+d(n-1).

If you know these are equivalent then you could compare
a_n=a_(n-1)+d to
a_n=a_(n-1)+4 and determine d is 4.

You could also see that
a_1 is give as 12.

Then you just plug into:


a_n=a_1+d(n-1)


a_n=12+4(n-1).

You could also simplify this equation just a bit.

You could distribute and then combine a pair of like terms.

Like so,


a_n=12+4(n-1)


a_n=12+4n-4


a_n=8+4n

User Morten Anderson
by
6.4k points