Find the recursive definition of the following sequence (Remember to define the first term t, the recursive rule to find tn,and the value n will start at.) 1, 6, 36, 216, 1296…..

Respuesta :

Multiply to find the pattern which is 100

The answer is composed of the following two equations

[tex]t_1 = 1[/tex] and [tex]t_n = 6*t_{n-1}[/tex]

both of these two equations combine to help form the full recursive definition

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

Further explanation:

The terms are represented by the letter 't' for short. Since we have more than one term, and because we have only so many letters, this means we stick a number onto the 't' to help label multiple terms. We have t1 as the first term, t2 as the second, etc. The numbers are often show as subscripts like so [tex]t_1, t_2, t_3, \ldots[/tex]

The first term of the list of numbers is 1, so [tex]t_1 = 1[/tex] is what we start with to help set up the recursive definition.

Once we have this starting point, we use it to get to the next term which is 6. This value is 6 times the first value. Therefore, the recursive step is [tex]t_n = 6*t_{n-1}[/tex] basically saying "multiply the (n-1)st term by 6 to get the nth term. Translation:  "whatever the current term is, multiply by 6 to get the next term".