CPSC 170 Lab 11
Recurrence Equations and Doubly Linked Lists Use the expand-guess-verify method to find a closed form solution for each recurrence equation below:
T(1) = 7 T(n) = 2 + T(n-1)
F(1) = 2 F(n) = 2
n
+ 2*F(n-1)