Respuesta :

Answers:

The recursive model is [tex]\begin{cases}a_1 = 2\\a_{n} = 4*a_{n-1}\end{cases}[/tex]

--------------

The explicit model is [tex]a_n = 2(4)^{n-1}[/tex]

============================================================

Explanation:

Finding the recursive model

The starting term of this geometric sequence is 2. We would write [tex]a_1 = 2[/tex]. The small subscript 1 indicates the term number, while 2 is the term itself.

The second term is [tex]a_2 = 8[/tex]

The third term is [tex]a_3 = 32[/tex]

and so on. Pick any term you want that isn't the first term. Divide that term you picked over its previous term. So say you picked the third term. Divide that over the second term to get

(third term)/(second term) = 32/8 = 4

or you could do fourth over third

(fourth term)/(third term) = 128/32 = 4

Each time you do this, you should get 4 as a result. This is the common ratio. We multiply each term by 4 to get the next term.

So the recursive step is [tex]a_{n} = 4*a_{n-1}[/tex] which says "the nth term [tex]a_n[/tex] is found by multiplying the prior term [tex]a_{n-1}[/tex] by 4". The entire "n-1" is a subscript to show it is the term just before the nth term.

Overall we have [tex]a_1 = 2[/tex] as the first term and the recursive rule [tex]a_n = 4*a_{n-1}[/tex] both of which combine to get the recursive model [tex]\begin{cases}a_1 = 2\\a_{n} = 4*a_{n-1}\end{cases}[/tex]

That just says "start at 2, multiply each term by 4 to get the next one"

----------------------------------------------------

Finding the explicit model

We have a = 2 as the first term and r = 4 as the common ratio. Plug those into the nth term of a geometric sequence formula as shown below

[tex]a_n = a*(r)^{n-1}\\\\a_n = 2(4)^{n-1}[/tex]

and that's all there is to it.