Whats tight bound and whats the difference between lower bound and tight bound? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T13:41:22Zhttp://stackoverflow.com/feeds/question/464078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/464078/whats-tight-bound-and-whats-the-difference-between-lower-bound-and-tight-bound3Whats tight bound and whats the difference between lower bound and tight bound?Vinegar2009-01-21T04:21:40Z2009-01-23T00:58:24Z
<p>With the reference of this <a href="http://stackoverflow.com/questions/3255/big-o-how-do-you-calculate-approximate-it#3368">Guru Badge Winning Answer</a>, anyone can explain what is Theta (tight bound), probably, with an example or two. </p>
<p>Omega is lower bound, quite understood, the minimum time an algorithm may take. And we know Big-O is for upper bound, means the maximum time an algorithm may take. I have no idea regarding the the Theta, mentioned in this post.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/464078/whats-tight-bound-and-whats-the-difference-between-lower-bound-and-tight-bound/464081#4640812Answer by Chris Bunch for Whats tight bound and whats the difference between lower bound and tight bound?Chris Bunch2009-01-21T04:26:22Z2009-01-21T04:26:22Z<p>Big O is the upper bound, while Omega is the lower bound. Theta requires both Big O and Omega, so that's why it's referred to as a tight bound (it must be both the upper and lower bound).</p>
<p>For example, an algorithm taking Omega(n log n) takes at least n log n time but has no upper limit. An algorithm taking Theta(n log n) is far preferential since it takes AT LEAST n log n (Omega n log n) and NO MORE THAN n log n (Big O n log n).</p>
http://stackoverflow.com/questions/464078/whats-tight-bound-and-whats-the-difference-between-lower-bound-and-tight-bound/464083#4640833Answer by Charlie Martin for Whats tight bound and whats the difference between lower bound and tight bound?Charlie Martin2009-01-21T04:30:14Z2009-01-21T04:30:14Z<p>If you have something that's big <em>O(f(n))</em> that means there's are <em>k</em>, <em>g(n)</em> such that <em>f(n)</em> ≤ <em>k g(n)</em>.</p>
<p>If you have something that's big <em>Ω(f(n))</em> that means there's are <em>k</em>, <em>g(n)</em> such that <em>f(n)</em> ≥ <em>k g(n)</em>.</p>
<p>And if you have a function with <em>O(f(n))</em> <em>and</em> <em>Ω(f(n))</em>, then it's <em>Θ(f(n)</em>.</p>
<p>The <a href="http://en.wikipedia.org/wiki/Big_O_notation" rel="nofollow">Wikipedia article</a> is decent, if a little dense.</p>
http://stackoverflow.com/questions/464078/whats-tight-bound-and-whats-the-difference-between-lower-bound-and-tight-bound/464107#4641071Answer by PolyThinker for Whats tight bound and whats the difference between lower bound and tight bound?PolyThinker2009-01-21T04:45:11Z2009-01-21T05:35:34Z<p>The phrases <em>minimum time</em> and <em>maximum time</em> are a bit misleading here. When we talk about big O notations, it's not the actual time we are interested in, it is how the time increases when our input size gets bigger. And it's usually the average or worst case time we are talking about, not <em>best case</em>, which usually is not meaningful in solving our problems. </p>
<p>Using the array search in the accepted answer to the other question as an example. The time it takes to find a particular number in list of size n is n/2 * some_constant in average. If you treat it as a function <code>f(n) = n/2*some_constant</code>, it increases no faster than <code>g(n) = n</code>, in the sense as given by Charlie. Also, it increases no slower than <code>g(n)</code> either. Hence, <code>g(n)</code> is actually both an upper bound and a lower bound of <code>f(n)</code> in Big-O notation, so the complexity of linear search is <em>exactly</em> <strong>n</strong>, meaning that it is Theta(n). </p>
<p>In this regard, the explanation in the accepted answer to the other question is not entirely correct, which claims that O(n) is upper bound because the algorithm can run in constant time for some inputs (this is the <em>best case</em> I mentioned above, which is not really what we want to know about the running time). </p>
http://stackoverflow.com/questions/464078/whats-tight-bound-and-whats-the-difference-between-lower-bound-and-tight-bound/471292#4712921Answer by Bill the Lizard for Whats tight bound and whats the difference between lower bound and tight bound?Bill the Lizard2009-01-22T23:32:08Z2009-01-22T23:32:08Z<p>Θ-notation is called tight-bound because it's more precise than O-notation and Ω-notation. If I were lazy, I could say that binary search on a sorted array is O(n<sup>2</sup>), O(n<sup>3</sup>), and O(2<sup>n</sup>), and I would be technically correct in every case. That's because O-notation only specifies an upper bound, and binary search is bounded on the high side by all of those functions, just not very closely. These lazy estimates would be useless.</p>
<p>Θ-notation solves this problem by combining O-notation and Ω-notation. If I say that binary search is Θ(n lg n), that gives you more precise information. It tells you that the algorithm is bounded on <em>both</em> sides by the given function, so it will never be significantly faster or slower than stated.</p>