4.3k views
1 vote
Create the explicit function that goes with f(1) = 12; f(n)= f(n-1)-3

User Jefflab
by
8.1k points

1 Answer

4 votes
The given recursive function \(f(n) = f(n - 1) - 3\) with the initial condition \(f(1) = 12\) can be written explicitly as:

\[f(n) = 12 - 3(n - 1)\]

This formula represents the explicit function corresponding to the given recursive definition.
User Jiseon
by
8.0k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.