CSC 344 - Algorithms and Complexity
Assignment #10 - Solving simple linear recurrence relations
Due Friday, May 5, 2017
Below you will find two simple, linear, recurrence relations. Derive the
formula for each and prove by mathematical induction that it is correct:
- To = 1
Tn = 2 Tn-1 + 5
- To = 0
Tn = 5 Tn-1 + 1
[Back to the Assignments Page]