Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While trying to understand the difference between Theta and O notation I came across the following statement :

The Theta-notation asymptotically bounds a function from above and below. When
we have only an asymptotic upper bound, we use O-notation.

But I do not understand this.The book explains it mathematically but it's too complex and gets really boring to read when I am really not understanding.

Can anyone explain the difference between the two using simple, yet powerful examples.

share|improve this question
If you find it boring maybe it's not the subject for you. Why are you reading the book? – Ash Burlaczenko Aug 27 '12 at 8:03
@Ash Burlaczenko As I mentioned,I find that boring because I am not understanding it.I think it's obvious ! – Suhail Gupta Aug 27 '12 at 8:05
2  
@Suhail your symbol doesn't show up in my browser.Edited – UmNyobe Aug 27 '12 at 8:06
1  
@nhahtdh: Your example is misleading. best case and worst case have nothing to do with big O/Theta notation. These (big O/Theta) are mathematical sets that include functions. An algorithm is not said to be Theta(f(n)) if the worst case and best case are identical, we say it is Theta(f(n)) worst case (for example), if the worst case is both O(f(n)) and Omega(f(n)), regardless of the behavior of the best case. – amit Aug 27 '12 at 8:49
1  
@nhahtdh: This is wrong. The worst case of insertion sort is Theta(n^2), since you can give a lower bound on how many ops will be needed on a worst case input (reversed order array), and it will be quadric in the number of elements. There is no sense talking about complexity of an algorithm without indicating under what analyzis it is calculated. Usually when the analyzis is omitted - it implicitly means that the complexity is calculated under the worst case analyzis. If we use this convention, insertion sort is Theta(n^2) [worst case analyzis is implicit in this claim]. – amit Aug 27 '12 at 10:24
show 3 more comments

2 Answers

Big O is giving only upper asymptotic bound, while big Theta is also giving a lower bound.

Everything that is Theta(f(n)) is also O(f(n)), but not the other way around.
T(n) is said to be Theta(f(n)) is it is both O(f(n)) and Omega(f(n))

For this reason big-Theta is more informative then big-O notation, so if we can say something is big-Theta, it's usually preferred. However - it is harder to prove something is big Theta, than to prove it is big-O.

For example, merge sort is both O(nlogn) and Theta(nlogn), but it is also O(n^2), since n^2 is asymptotically "bigger" then it. However, it is NOT Theta(n^2), Since the algorithm is not Omega(n^2).

EDIT (Answering questions on comments):
Omega(n) is asymptotic lower bound. If T(n) is Omega(f(n)), it means that from a certain n0, there is a constant C such that T(n) >= C * f(n) (Where big-O says there is a constant C2 such that T(n) <= C2 * f(n))).
All three (Omega,O,Theta) gives only asymptotic information ("for large input"), Big O gives upper bound, big Omega gives lower bound, and big Theta gives both. Note that this notation is NOT related to the best/worst/average case analysis of algorithms. Each one of these can be applied to each analysis.

share|improve this answer
f(n) is theta g(n) when "f(n) is O(n) and f(n) is omega(n)". I understand that omega(n) tells me the worst case (is that so ?) and O(n) tells me the behavior of the function with some large inputs, against the time. What does theta(n) depict / tell ? – Suhail Gupta Aug 27 '12 at 9:20
1  
@SuhailGupta: Omega(n) is assymptotic lower bound. If T(n) is Omega(f(n)), it means that from a certain n0, there is a constant C such as, T(n) >= C * f(n) (Where big-O says there is a constant C2 such that T(n) <= C2 * f(n))). All three (Omega,O,Theta) gives only asymptotic information ("for large input"), Big O gives upper bound, big Omega gives lower bound, and big Theta gives both. Note that this notation is NOT related to the best/worst/average case analyzis of algorithms. Each one of these can be applied to each analyzis. – amit Aug 27 '12 at 9:51
I'm quite sure that I'm clear about what the notations mean (in mathematical sense). But when you mention it (and when I read some article on Wikipedia about sorting), I'm a bit confused as to how the notations are used in worse/best/avg case analysis: Why they assign theta notation in the case of Cycle sort, but they use O notation for the case of Selection sort. – nhahtdh Aug 27 '12 at 10:24
@nhahtdh: The authors of these articles might be unsure themselves. (Remember wikipedia is not always editted by professional CS, could be an article created/editted by a confused UG student). Note that big O/Theta/Omega are classes of functions, and not algorithms. (worst/best/average/.. case analyzis is actually a function that converts an algorithm to a function). Also note: it is not wrong to claim a Theta(n^2) function is O(n^2) - thus the wikipedia claims - though not accurate - are not wrong. – amit Aug 27 '12 at 10:31
I have a algorithm 'Alg' for which omega, theta, big O are defined. Explain me in very simple language what will each of them tell me about the algorithm 'Alg'? Use an alias for lower bound or upper bound or explain them. – Suhail Gupta Aug 27 '12 at 11:05
show 4 more comments

I am going to use an example to illustrate the difference.

Let the function f(n) be defined as

if n is odd f(n) = n^3
if n is even f(n) = n^2

From CLRS

A function f(n) belongs to the set Θ(g(n)) if there exist positive constants c1 and c2 such that it can be "sandwiched" between c1g(n) and c2g(n), for sufficiently large n.

AND

O(g(n)) = {f(n): there exist positive constants c and n0 such that 0 ≤ f(n) ≤ cg(n) for all n ≥ n0}.

AND

Ω(g(n)) = {f(n): there exist positive constants c and n0 such that 0 ≤ cg(n) ≤ f(n) for all n ≥ n0}.

The upper bound on f(n) is n^3. So our function f(n) is clearly O(n^3).

But is it Θ(n^3)?

For f(n) to be in Θ(n^3) it has to be sandwiched between two functions one forming the lower bound, and the other the upper bound, both of which grown at n^3. While the upper bound is obvious, the lower bound can not be n^3. The lower bound is in fact n^2; f(n) is Ω(n^2)

From CLRS

For any two functions f(n) and g(n), we have f(n) = Θ(g(n)) if and only if f(n) = O(g(n)) and f(n) = Ω(g(n)).

Hence f(n) is not in Θ(n^3) while it is in O(n^3) and Ω(n^2)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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