Post Made Community Wiki by Community
show/hide this revision's text 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) - 1
Then 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.

show/hide this revision's text 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) - 1
Then 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.

show/hide this revision's text 5 added 56 characters in body
show/hide this revision's text 4 added 17 characters in body
show/hide this revision's text 3 deleted 1 characters in body
show/hide this revision's text 2 added 340 characters in body
show/hide this revision's text 1