Recursion and Big O - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:37:43Z http://stackoverflow.com/feeds/question/206094 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/206094/recursion-and-big-o 3 Recursion and Big O Zachary 2008-10-15T19:33:08Z 2008-10-16T06:33:04Z <p>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.</p> <p>Provide the best rate of growth using the big-Oh notation for the solution to the following recurrence?</p> <p>T(1) = 2</p> <p>T(n) = 2T(n - 1) + 1 for n>1 </p> <p>And the choices are:</p> <ul> <li>O(n log n)</li> <li>O(n^2)</li> <li>O(2^n)</li> <li>O(n^n)</li> </ul> <p>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.</p> <p>So, my question is: Why isn't this O(n)?</p> http://stackoverflow.com/questions/206094/recursion-and-big-o/206110#206110 2 Answer by Roman Plášil for Recursion and Big O Roman Plášil 2008-10-15T19:36:39Z 2008-10-15T19:51:21Z <p>I think this will be exponential. Each increment to n makes the value to be twice as large.</p> <pre><code>T(2) = 2 * T(1) = 4 T(3) = 2 * T(2) = 2 * 4 ... </code></pre> <p>T(x) would be the running time of the following program (for example):</p> <pre><code>def fn(x): if (x == 1): return # a constant time # do the calculation for n - 1 twice fn(x - 1) fn(x - 1) </code></pre> http://stackoverflow.com/questions/206094/recursion-and-big-o/206117#206117 13 Answer by Dima for Recursion and Big O Dima 2008-10-15T19:37:53Z 2008-10-15T19:37:53Z <p>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. </p> <p>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.</p> http://stackoverflow.com/questions/206094/recursion-and-big-o/206119#206119 2 Answer by Konrad Rudolph for Recursion and Big O Konrad Rudolph 2008-10-15T19:38:37Z 2008-10-15T19:38:37Z <blockquote> <p>I think this will be exponential. Each increment to n brings twice as much calculation.</p> </blockquote> <p>No, it doesn't. Quite on the contrary:</p> <p>Consider that for <em>n</em> iterations, we get running time <em>R</em>. Then for <em>n</em> + 1 iterations we'll get exactly <em>R</em> + 1.</p> <p>Thus, the growth rate is constant and the overall runtime is indeed <em>O</em>(<em>n</em>).</p> <p>However, I think Dima's assumption about the question is right although his solution is overly complicated:</p> <blockquote> <p>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.</p> </blockquote> <p>It's sufficient to examine the relative size of <em>T</em>(<em>n</em>) and <em>T</em>(<em>n</em> + 1) iterations and determine the relative growth rate. The amount obviously doubles which directly gives the asymptotic growth.</p> http://stackoverflow.com/questions/206094/recursion-and-big-o/206129#206129 2 Answer by Rob Walker for Recursion and Big O Rob Walker 2008-10-15T19:41:00Z 2008-10-15T19:41:00Z <p>The question is asking for the big-Oh notation for the solution to the recurrence, not the cost of calculation the recurrence.</p> <p>Put another way: the recurrence produces:</p> <pre><code> 1 -&gt; 2 2 -&gt; 5 3 -&gt; 11 4 -&gt; 23 5 -&gt; 47 </code></pre> <p>What big-Oh notation best describes the sequence 2, 5, 11, 23, 47, ...</p> <p>The correct way to solve that is to solve the recurrence equations.</p> http://stackoverflow.com/questions/206094/recursion-and-big-o/206192#206192 7 Answer by R4Y for Recursion and Big O R4Y 2008-10-15T20:05:39Z 2008-10-16T00:24:06Z <p>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.</p> <p>You could use the other two methods, but the easiest way for this problem is to solve it iteratively.</p> <p>T(n) = 2T(n-1) + 1<br> T(n) = 4T(n-2) + 2 + 1<br> T(n) = 8T(n-3) + 4 + 2 + 1<br> T(n) = ...<br></p> <p>See the pattern?</p> <p>T(n) = 2^(n-1)<em>T(1) + 2^(n-2) + 2^(n-3) + ... + 1<br> T(n) = 2^(n-1)</em>2 + 2^(n-2) + 2^(n-3) + ... + 1<br> T(n) = 2^n + 2^(n-2) + 2^(n-3) + ... + 1<br></p> <p>Therefore, the tightest bound is Theta(2^n).</p> http://stackoverflow.com/questions/206094/recursion-and-big-o/206231#206231 -1 Answer by James for Recursion and Big O James 2008-10-15T20:14:23Z 2008-10-15T20:14:23Z <p>I hate this notation for this problem because it's so very ambiguous...</p> <p>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".</p> <p>Generally, when analysing algorithms, the constant is irrelevant and so O(2n) and O(n) are asymptotically the same thing.</p> http://stackoverflow.com/questions/206094/recursion-and-big-o/206687#206687 1 Answer by patros for Recursion and Big O patros 2008-10-15T22:01:08Z 2008-10-15T22:01:08Z <p>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...</p> <p>On to the actual question. The general solution can obviously be solved in constant time if you're not doing recursion</p> <p>( T(n) = 2^(n - 1) + 2^(n) - 1 ), so that's not what they're asking.</p> <p>And as you can see, if we write the recursive code:</p> <pre><code>int T( int N ) { if (N == 1) return 2; return( 2*T(N-1) + 1); } </code></pre> <p>It's obviously O(n).</p> <p>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)</p> http://stackoverflow.com/questions/206094/recursion-and-big-o/206772#206772 0 Answer by Federico Ramponi for Recursion and Big O Federico Ramponi 2008-10-15T22:29:17Z 2008-10-16T00:06:42Z <p>Computing a closed form solution to the recursion is easy. By inspection, you guess that the solution is</p> <pre>T(n) = 3*2^(n-1) - 1</pre> Then you prove by induction that this is indeed a solution. Base case: <pre>T(1) = 3*2^0 - 1 = 3 - 1 = 2. OK.</pre> Induction: <pre>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. </pre> <p>where the first equality stems from the recurrence definition, and the second from the inductive hypothesis. QED.</p> <p>3*2^(n-1) - 1 is clearly Theta(2^n), hence the right answer is the third.</p> <p>To the folks that answered O(n): I couldn't agree more with Dima. The problem does <strong>not</strong> 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 <em>on T(n) itself</em>, and that is the exponential one.</p>