5. Using Recursive Rules with Sequences
Sign In
The n^(th) square number, S_n, represents the number of dots in a square with the side made of n dots. Therefore, the total number of dots is n* n=n^2. This tells us that the explicit rule for the sequence of square numbers is S_n=n^2.
T_1=1 T_n=T_(n-1)+nforn>1 Now, let's deal with the square numbers. The first square number is S_1=1.
Notice that the number of dots in S_n is (n-1)+(n-1)+1=2n-1 more than the number of dots in S_(n-1). Therefore, we can write a recursive rule for S_n. S_1=1 S_n=S_(n-1)+2n-1forn>1
This tells us that S_n= T_n+ T_(n-1) for n>1.