Answer:
- explicit: a(n) = 2·5^(n-1)
- recursive: a(1) = 2; a(n) = a(n-1)×5
Explanation:
The given sequence is exponential with a first term of a1 = 2 and a common ratio of r = 10/2 = 5.
The explicit equation for an exponential sequence is ...
a(n) = a(1)×r^(n -1)
So, for the given parameters, the explicit equation is ...
a(n) = 2×5^(n -1)
__
The recursive equation for any series defines the next term as a function of previous terms. For a geometric sequence the next term is the previous term multiplied by the common ratio. For this sequence, the recursive definition is ...
a(1) = 2
a(n) = 5×a(n-1)