Here is the Equation and how far I got into solving this problem using the iteration method:
$$T(1) = 8 \\
T(n) = 3T(n-1) - 15$$
Iterations:
$i=1, $
$$T(n) = 3(3T(n-2) - 15) -15$$
$i=2, $ $$ 3(3(3T(n-3) - 15) -15) - 15$$
$i=3,$
$$3(3(3(3T(n-4) - 15) -15) - 15) - 15$$
$i=4,$
$$ 3(3(3(3(3T(n-5) - 15) -15) - 15) - 15) - 15$$
From the iteration pattern I found that
$$T(n) = 3^{i+1} \times T(n-(i+1)) - 15$$
At this point I need to find a summation for this recurrence and make it into closed form... I'm just not sure how.
Can someone explain or help guide me to solving this problem?
Hint: $T(n)-7.5 = 3 [ T(n-1) - 7.5) ]$
Hint: Set $S(n) = T(n) - 7.5$. What is $S(1)$? How does $S(n), S(n-1)$ relate?