The given recursively defined formula is:
- \( a_1 = -3 \)
- \( a_n = a_{n-1} + 4 \)
To express this in function notation, we start by letting \( f(n) \) represent the sequence defined by the recursive formula. Based on the definition:
- The initial value is \( f(1) = a_1 = -3 \).
- The recursive step can be written as \( f(n) = f(n-1) + 4 \).
So, looking at the options provided:
-
The first choice describes the initial condition and the recursive step correctly: \[ a(1) = -3;, f(n) = f(n-1) + 4 \]
-
The second choice has an incorrect recursive formula \( f(n) = a_{n-1} + 4 \).
-
The third choice also has an incorrect recursive formula, \( f(n) = f(a_{n-1}) + 4 \).
-
The fourth choice is identical to the first and is correct as well.
Both the first and fourth options are valid. If we are to choose only one in a typical scenario, we would typically select the first option.
Thus, the correct function notation is:
\( f(1) = -3; , f(n) = f(n-1) + 4 \).