vote up 3 vote down star

With the reference of this Guru Badge Winning Answer, anyone can explain what is Theta (tight bound), probably, with an example or two.

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.

Thanks.

flag

Why negative?. . .. May be because it too dumb.... hahaha.. .. sorry for that. – Vinegar Jan 30 at 2:48

4 Answers

vote up 2 vote down check

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).

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).

link|flag
Oh.. Now the term "tight bound" appearing quite self-explaining to me. Thanks Chris. Stupid me, perhaps I was expecting some complex idea. :) – Vinegar Jan 21 at 4:35
Yea, there's a lot of fancy notation thrown around but it's not too complex once you get it under your belt. – Chris Bunch Jan 21 at 4:37
vote up 3 vote down

If you have something that's big O(f(n)) that means there's are k, g(n) such that f(n)k g(n).

If you have something that's big Ω(f(n)) that means there's are k, g(n) such that f(n)k g(n).

And if you have a function with O(f(n)) and Ω(f(n)), then it's Θ(f(n).

The Wikipedia article is decent, if a little dense.

link|flag
Now reading the family of Bachmann-Landau notations. Thanks Charlie, I went there before, but returned without proceeding to its length. – Vinegar Jan 21 at 4:38
Hey, it's good to get a refresh on doctoral comps every so often. – Charlie Martin Jan 21 at 17:30
vote up 1 vote down

The phrases minimum time and maximum time 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 best case, which usually is not meaningful in solving our problems.

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 f(n) = n/2*some_constant, it increases no faster than g(n) = n, in the sense as given by Charlie. Also, it increases no slower than g(n) either. Hence, g(n) is actually both an upper bound and a lower bound of f(n) in Big-O notation, so the complexity of linear search is exactly n, meaning that it is Theta(n).

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 best case I mentioned above, which is not really what we want to know about the running time).

link|flag
So, can we say that Ω is the best case, and O is the worst?. . .. and should we replace the terms as best case, and worst case, respectively? – Vinegar Jan 21 at 5:06
Best case is O(1) for any problem? – Zach Langley Jan 21 at 5:15
@Adeel, no, Theta and O can both refer to either average case or worst case. @Zach, well, not exactly. Thanks for pointing that out. – PolyThinker Jan 21 at 5:33
vote up 1 vote down

Θ-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(n2), O(n3), and O(2n), 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.

Θ-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 both sides by the given function, so it will never be significantly faster or slower than stated.

link|flag

Your Answer

Get an OpenID
or

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