In a section of a baseball stadium, there are 11 seats in the first row. There are 15 seats in the second row, 19 seats in the third row, and 23 seats in the fourth row.

If the number of seats in each row follows the pattern described above, which recursive function defines the number of seats in the Nth row?

Respuesta :

[tex]a_{n}[/tex] = [tex]a_{n-1}[/tex] + 4

this is an arithmetic sequence with n th term formula

[tex]a_{n}[/tex] = [tex]a_{1}[/tex] + (n - 1)d

where d is the common difference and [tex]a_{1}[/tex] the first term

here d = 23 - 19 = 19 - 15 = 4 and [tex]a_{1}[/tex] = 11

[tex]a_{n}[/tex] = 11 + 4(n - 1 ) = 11 + 4n - 4 = 4n + 7 ← explicit formula

A recursive formula allows us to find any term from the previous term.

[tex]a_{n}[/tex] = [tex]a_{n-1}[/tex] + 4 ← recursive function


Answer:

f(1)=11

f(n)=f(n-1)+4, for n >2