Given the recursively defined formula a = -3, aN = aN-1 + 4, determine which option is the correct function notation.

1 answer

To analyze the recursively defined sequence given by a1=3 and an=an1+4, we can determine the explicit formula for an.

  1. Start with the recursive definition:
    • a1=3
    • a2=a1+4=3+4=1
    • a3=a2+4=1+4=5
    • a4=a3+4=5+4=9
    • a5=a4+4=9+4=13

From these calculations, we can observe the pattern in the sequence:

  • a1=3
  • a2=1
  • a3=5
  • a4=9
  • a5=13

Notice that the sequence is increasing by 4 each time.

  1. We can determine the explicit formula for an by recognizing that this sequence resembles an arithmetic sequence, where the first term is 3 and the common difference is 4.

The formula for the n-th term of an arithmetic sequence can be expressed as: an=a1+(n1)d Where a1 is the first term and d is the common difference.

Plugging our values into this formula:

  • a1=3
  • d=4

We have: an=3+(n1)4

  1. Simplifying this expression: an=3+4n4 an=4n7

Thus, the correct function notation for the recursively defined sequence is: an=4n7