|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
7 | added 3 characters in body | ||
|
Computing a closed form solution to the recursion is easy. By inspection, you guess that the solution is T(n) = 3*2^(n-1) - 1Then you prove by induction that this is indeed a solution. Base case: T(1) = 3*2^0 - 1 = 3 - 1 = 2. OK.Induction: Suppose T(n) = 3*2^(n-1) - 1. Then T(n+1) = 2*T(n) + 1 = 3*2^n - 2 + 1 = 3*2^((n+1)-1) - 1. OK. where the first equality stems from the recurrence definition, and the second from the inductive hypothesis. QED. 3*2^(n-1) - 1 is clearly Theta(2^n), so hence the right answer is the third. To the folks that answered O(n): I couldn't agree more with Dima. The problem does not ask the best tightest upper bound to the computational complexity of an algorithm to compute T(n) (which would be now O(1), since its closed form has been provided). The problem asks for the best tightest upper bound on T(n) itself, and that is the exponential one. |
||||
|
6 | deleted 4 characters in body | ||
|
Computing a closed form solution to the recursion is not that difficulteasy. By inspection, you guess that the solution is T(n) = 3*2^(n-1) - 1Then you prove by induction that this is indeed a solution. Base case: T(1) = 3*2^0 - 1 = 3 - 1 = 2. OK.Induction: Suppose T(n) = 3*2^(n-1) - 1. Then T(n+1) = 2*T(n) + 1 = 3*2^n - 2 + 1 = 3*2^((n+1)-1) - 1. OK. where the first equality stems from the recurrence definition, and the second from the inductive hypothesis. QED. 3*2^(n-1) - 1 is clearly Theta(2^n), so the right answer is the third. To all the folks that answered O(n): I couldn't agree more with Dima. The problem does not ask the best upper bound to the computational complexity of an algorithm to compute T(n) (which would be now O(1), since its closed form has been provided). The problem asks for the best upper bound on T(n) itself, and that is the exponential one. |
||||
|
5 | added 56 characters in body | ||
|
4 | added 17 characters in body | ||
|
3 | deleted 1 characters in body | ||
|
2 | added 340 characters in body | ||
|
1 |
|
||
