use a recursive function for the geometric sequence 2, -6, 18, -54,... to represent the 9th term.

f(9) = f(8) • (-3)

f(9) = f(1) • (-3)^8

f(9) = f(1) + -3(8)

f(9) = f(8) + -3(8)​