
Sarah R. answered 01/26/21
Credentialed High School Math teacher with a Bachelors in Mathematics
In order to use any recursive formula you need the previous term (an-1 or g(n-1)). Meaning, if you want to find the 100th term which in this case is represented as g(100) you will also need the 99th term or g(99). However, because you only have g(1) = 80 and g(2) = 40, in order to find g(100) you will also need all the terms in between what you have, g(2) and g(1), and what you need, g(100). As a result, it is much faster to use the explicit formula to determine the value of g(100) since the recursive formula is much more tedious.
General formula for recursive: an = an-1*r
General formula for recursive with the variables given: g(n) = g(n-1)*r
So, g(100) = g(99)*(0.5), but using recursive we would need g(99) so g(99) = g(98)*(0.5), g(98) = g(97)*(0.5) ... g(3) = g(2)*(0.5), g(2) = g(1)*(0.5)