vote up 3 vote down star
5

I've been working through a recent Computer Science homework involving recursion and big-O notation. I believe I understand this pretty well (certainly not perfectly, though!) But there is one question in particular that is giving me the most problems. The odd thing is that by looking it, it looks to be the most simple one on the homework.

Provide the best rate of growth using the big-Oh notation for the solution to the following recurrence?

T(1) = 2

T(n) = 2T(n - 1) + 1 for n>1

And the choices are:

  • O(n log n)
  • O(n^2)
  • O(2^n)
  • O(n^n)

I understand that big O works as an upper bound, to describe the most amount of calculations, or the highest running time, that program or process will take. I feel like this particular recursion should be O(n), since, at most, the recursion only occurs once for each value of n. Since n isn't available, it's either better than that, O(nlogn), or worse, being the other three options.

So, my question is: Why isn't this O(n)?

flag

60% accept rate
I kept reading that as "T(1) = (2 T(n))", but I think you meant "T(1) = 2, and T(n) = [...]". Correct? – Just Some Guy Oct 15 '08 at 19:39
Can you put each clause on a newline? – leppie Oct 15 '08 at 19:41
Yeah, because as I read it right now, the results go: 2, 5, 11, 23, etc... – R. Bemrose Oct 15 '08 at 19:50
reformatted for clarity – Steven A. Lowe Oct 15 '08 at 19:53
Can I downvote the professor? – Tanktalus Oct 15 '08 at 22:45

8 Answers

vote up 7 vote down check

There's a couple of different ways to solve recurrences: substitution, recurrence tree and master theorem. Master theorem won't work in the case, because it doesn't fit the master theorem form.

You could use the other two methods, but the easiest way for this problem is to solve it iteratively.

T(n) = 2T(n-1) + 1
T(n) = 4T(n-2) + 2 + 1
T(n) = 8T(n-3) + 4 + 2 + 1
T(n) = ...

See the pattern?

T(n) = 2^(n-1)T(1) + 2^(n-2) + 2^(n-3) + ... + 1
T(n) = 2^(n-1)
2 + 2^(n-2) + 2^(n-3) + ... + 1
T(n) = 2^n + 2^(n-2) + 2^(n-3) + ... + 1

Therefore, the tightest bound is Theta(2^n).

link|flag
Thanks to everyone that helped. I had noticed that the pattern was 2*last + 1, but instead of doing it iteratively with powers, I was trying an odd type of for loop. I see now why it is exponential. – Zachary Oct 15 '08 at 20:09
Big is computational complexity not the bound.You are calling T() n times. You could easily rewrite this as a simple loop. – Martin York Oct 15 '08 at 20:22
T(n) = 2^(n-1) + 2^(n-2) + 2^(n-3) + ... + 1: That would be exactly 2^n - 1, and would be wrong. – Federico Ramponi Oct 15 '08 at 23:16
2^(n-1) = O(2^n), no? – R4Y Oct 15 '08 at 23:22
Of course yes. But the solution to the recursion is not T(n) = 2^(n-1) + 2^(n-2) + 2^(n-3) + ... + 1 = 2^n - 1. It is instead T(n) = 2^(n-1) + 2^n - 1 = 3*2^(n-1) - 1. – Federico Ramponi Oct 15 '08 at 23:38
show 1 more comment
vote up 2 vote down

I think this will be exponential. Each increment to n makes the value to be twice as large.

T(2) = 2 * T(1) = 4
T(3) = 2 * T(2) = 2 * 4
...

T(x) would be the running time of the following program (for example):

def fn(x):
 if (x == 1):
  return    # a constant time
 # do the calculation for n - 1 twice
 fn(x - 1)
 fn(x - 1)
link|flag
In that case, it would be O(n log n) because the time required to multiply the result is O(log n). – Just Some Guy Oct 15 '08 at 19:42
Correct - they don't want you to measure the run time of the expression, they want to measure the output of the expression. – plinth Oct 15 '08 at 19:42
I do have the output of the expression in mind (i.e. if you plot the function T, it will be an exponential plot). – Roman Plášil Oct 15 '08 at 19:46
vote up 13 vote down

I think you have misunderstood the question a bit. It does not ask you how long it would take to solve the recurrence. It is asking what the big-O (the asymptotic bound) of the solution itself is.

What you have to do is to come up with a closed form solution, i. e. the non-recursive formula for T(n), and then determine what the big-O of that expression is.

link|flag
vote up 2 vote down

I think this will be exponential. Each increment to n brings twice as much calculation.

No, it doesn't. Quite on the contrary:

Consider that for n iterations, we get running time R. Then for n + 1 iterations we'll get exactly R + 1.

Thus, the growth rate is constant and the overall runtime is indeed O(n).

However, I think Dima's assumption about the question is right although his solution is overly complicated:

What you have to do is to come up with a closed form solution, i. e. the non-recursive formula for T(n), and then determine what the big-O of that expression is.

It's sufficient to examine the relative size of T(n) and T(n + 1) iterations and determine the relative growth rate. The amount obviously doubles which directly gives the asymptotic growth.

link|flag
vote up 2 vote down

The question is asking for the big-Oh notation for the solution to the recurrence, not the cost of calculation the recurrence.

Put another way: the recurrence produces:

  1 -> 2
  2 -> 5
  3 -> 11
  4 -> 23
  5 -> 47

What big-Oh notation best describes the sequence 2, 5, 11, 23, 47, ...

The correct way to solve that is to solve the recurrence equations.

link|flag
vote up -1 vote down

I hate this notation for this problem because it's so very ambiguous...

In short, O(n) is the right answer. O(2n) may be an acceptable answer if you interpret the phrase 2T(n-1) as meaning "execute the previous iteration twice" rather then "multiply the results of the prior iteration by two".

Generally, when analysing algorithms, the constant is irrelevant and so O(2n) and O(n) are asymptotically the same thing.

link|flag
It's 2 ^ n, not 2 * n. It fooled me too, initially. – Ryan Fox Oct 16 '08 at 6:52
T(n) = 2T(n-1) + 1 means "The time to solve an instance of size n is equal to twice the time to solve an instance of size (n-1), plus one." – Dave L. Oct 20 '08 at 20:52
vote up 1 vote down

First off, all four answers are worse than O(n)... O(n*log n) is more complex than plain old O(n). What's bigger: 8 or 8 * 3, 16 or 16 * 4, etc...

On to the actual question. The general solution can obviously be solved in constant time if you're not doing recursion

( T(n) = 2^(n - 1) + 2^(n) - 1 ), so that's not what they're asking.

And as you can see, if we write the recursive code:

int T( int N )
{
    if (N == 1) return 2;
    return( 2*T(N-1) + 1);
}

It's obviously O(n).

So, it appears to be a badly worded question, and they are probably asking you the growth of the function itself, not the complexity of the code. That's 2^n. Now go do the rest of your homework... and study up on O(n * log n)

link|flag
vote up 0 vote down

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), 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 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 tightest upper bound on T(n) itself, and that is the exponential one.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.