212k views
1 vote
Critical thinking write a recursive rule for a sequence where every term is the same.

User Hakki
by
7.9k points

1 Answer

1 vote
To do this, let f(1) = 5 and f(n) = f(n-1) for n greater than 1. This is recursive rule and each term is the same because it eventually becomes f(1), which is 5.
User Macke
by
8.3k points