5. Using Recursive Rules with Sequences
Sign In
At the beginning of the (n-1)^(th) week the amount of chlorine is a_(n-1). Each week, the pool loses 40 %= 0.4 of chlorine. The amount of old chlorine at the end of the (n-1)^(th) week is (1- 0.4)a_(n-1)= 0.6a_(n-1). We add 16 ounces of chlorine every week. This tells us that a_n= 0.6a_(n-1)+ 16. Recursive Rule: a_1=34, a_n=0.6a_(n-1)+16forn>1
=Round((0.6)*(A1)+16,2)in cell A2. When we hit enter, we will get the following.
Next, copy cell A2, highlight cell A3, and paste.
We get a number 37.84 in the third row. This tells us that a_3=37.84.
=Round(0.6)*(A1)+16in cell A2. When we hit enter, we will get the following.
Next, copy cell A2, highlight cells A3 through A14, and paste.
After cell A13 we will keep getting the same value, 39.99. This tells us that the amount of chlorine stabilizes around 40 ounces.