
David W. answered 05/03/17
Tutor
4.7
(90)
Experienced Prof
The common ratio is -2.
A recursive definition usually defines a1 (the base case) and any other constant terms, then defines an in terms of an-1 or other already defined terms (recursive case). This is so recursion is done to produce an.
a1 = -5 [base case]
an = -2an-1 [recursive case]