Answer :

Answer for the first box:  20

Answer for the second box: 6

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

Explanation:

The notation a(1) represents the first term of the sequence given. The first term is 20, so thats why a(1) = 20.

The notation a(n) = a(n-1) + ____ means we add some term to the previous term to get the next. This process happens over and over. In this case, we add 6 to each term to get the next

  • term1 = 20
  • term2 = term1 + 6 = 20 + 6 = 26
  • term3 = term2 + 6 = 26 + 6 = 32
  • term4 = term3 + 6 = 32 + 6 = 38

and so on...

So we write a(n) = a(n-1) + 6

This value of 6 can be found by selecting any term and subtracting off the previous term, so we could say any of the following below

  • term2 - term1 = 26 - 20 = 6
  • term3 - term2 = 32 - 26 = 6
  • term4 - term3 = 38 - 26 = 6

That's how we end up with

[tex]\begin{cases}a(1) = 20\\a(n) = a(n-1) + 6\end{cases}[/tex]

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

Extra info:

The common difference is d = 6 and the first term is a = 20

We can use these two facts to find the nth term a(n)

a(n) = a + d*(n-1)

a(n) = 20 + 6*(n-1)

a(n) = 20 + 6n - 6

a(n) = 6n + 14

Then note how plugging in n = 1 leads to

a(n) = 6*n + 14

a(1) = 6*1 + 14

a(1) = 20

and n = 2 leads to

a(n) = 6*n + 14

a(2) = 6*2 + 14

a(2) = 26

and so on

This allows us to plug in any value of n we want, without having to generate the previous terms before it. So for instance, you could plug in n = 100 to jump directly to the 100th term. If you use the recursive definition in the last section, then you have to generate the first 99 terms first before you can get to the 100th term.

Other Questions