94.5k views
4 votes
20. A sequence is defined recursivelybelow:+4a, = 8,-1a, = -3Which function can be used to find the nthsequence?

20. A sequence is defined recursivelybelow:+4a, = 8,-1a, = -3Which function can be-example-1
User Aadarshsg
by
3.5k points

1 Answer

6 votes

A)

1) Let's insert the Recursive formula for a:


\begin{gathered} a_n=a_(n-1)+4 \\ a_1=-3 \\ f(n)=-3\text{ +(n-1)4} \\ f(n)=-3\text{ +4n-4} \\ f(n)=4n-7 \end{gathered}

When we apply the General formula f(n) we'll need the first term. for that sequence, and then rearrange it we find the function for the nth term of that Arithmetic Sequence.

All we need now is to plug into the formula the nth term we want to find out.

User Hetal Rachh
by
3.1k points