5. Using Recursive Rules with Sequences
Sign In
Just after taking the (n-1)^(th) dose the amount of the drug is a_(n-1). Before the next dose, 60 % of the drug is removed from the bloodstream. Therefore, 40 %=0.4 of the old drug remains. Next, we add 325 milligrams when taking the next dose. ccccc c Amount of the drug after the $n^(th)$ dose & =0.4 * & c Amount of the drug after the $(n-1)^(th)$ dose & + & New dose ⇓ & & ⇓ & & ⇓ a_n & =0.4 * & a_(n-1) & + & 325 Therefore, we can write a recursive rule: a_1=325, a_n=0.4a_(n-1)+325 for n>1.
=Round((0.4)*(A1)+325,2)in cell A2. When we hit enter, we will get the following.
=Round((0.4)*(A1)+650,2)in cell A2. When we hit enter, we will get the following.