On Gabriela's first birthday, her parents gave her a $50 savings account on every birthday after that her parents added to the account,
increasing the amount they deposited by $25 each year. Complete the recursive definition for the sequence that represents this situation by
finding the values for a, and d.

Respuesta :

Initial amount , a = $50 .

Increase in price , d = $25 .

We need to find the recursive relation of the sequence .

If we notice it is an arithmetic progression with common difference $25 .

Which means that difference between any two consecutive term is 25 .

So , T(n) - T(n-1) = 25

T(n) = T(n-1) + 25 .

Hence , this is the required solution .