HW Recursion
HW Recursion
29 exactly
tn = n if n=0, 1 5tn-1-6tn-2
The characteristic polynomial: x2-5x+6 = 0 (x-3)(x-2)=0 (x-3)(xRoots: 3,2 General solution: tn = c13n + c22n Since t0 is 0 and t1 is 1 c1+ c2 = 0; 3c1 + 2c2 = 1; Solve the system of linear equations, c1 = 1 and c2 = 1 So,
tn = 3n - 2n