vote up 22 vote down star
18

Sometimes I see Θ(n) with the strange Θ symbol with something in the middle of it, and sometimes just O(n). Is it just laziness of typing because nobody knows how to type this symbol, or does it mean something different?

flag

It's not obvious, but this question is a duplicate of this one stackoverflow.com/questions/464078/… from yesterday. – Bill the Lizard Jan 23 at 0:03
However, this is a pet bug-bear of mine, and something people get wrong a lot! – HenryR Jan 23 at 10:14

5 Answers

vote up 52 vote down check

To explain it to your grandma:

If an algorithm is of Θ(g(n)), it means that the running time of the algorithm as 'n' (input size) gets larger is proportional to g(n).

If an algorithm is of O(g(n)), it means that the running time of the algorithm as 'n' gets larger is at most proportional to g(n).

Normally, even when people talk about O(g(n)) they actually mean Θ(g(n)) but technically, there is a difference.


More technically:

O(n) represents upper bound. Θ(n) means tight bound. Ω(n) represents lower bound.

f(x) = Θ(g(x)) if and only if f(x) = O(g(n)) and f(x) = Ω(g(x))

For example, an upper bound for the naive recursive approach to compute Fibonacci sequence is:

Fib(x) = O(2n)

but the tight bound is

Fib(x) = Θ(Fn) where Fn is the Fibonacci sequence.

which is also a valid upper bound.

Basically when we say an algorithm is of O(n), it's also O(n2), O(n1000000), O(2n), ... .

In fact, if we assume the set of functions g(x) that satisfy f(x) = O(g(x)):

S = { g | f(x) = O(g(x)) } => f(x) = Θ(min S)

There is also a small-oh and small-omega (ω) notations which mean loose upper and loose lower bounds.

To summarize:

f(x) = O(g(x)) (big-oh) means that the growth rate of f(x) is asymptotically less than or equal to to the growth rate of g(x).

f(x) = Ω(g(x)) (big-omega) means that the growth rate of f(x) is asymptotically greater than or equal to the growth rate of g(x)

f(x) = o(g(x)) (small-oh) means that the growth rate of f(x) is asymptotically less than to the growth rate of g(x).

f(x) = ω(g(x)) (small-omega) means that the growth rate of f(x) is asymptotically greater than the growth rate of g(x)

f(x) = Θ(g(x)) (theta) means that the growth rate of f(x) is asymptotically equal to the growth rate of g(x)

So we can reformulate f(x) = Θ(g(x)) as:

T = { g | f(x) = o(g(x)) }

f(x) = Θ(g(x)) if and only if "g" is a member of S - T.

I tried to avoid mathematical definition of these notations in this post (did I say I hate theoretical CS? :D). For a more detailed discussion, you can either use Google or read the classic (Introduction to Algorithms, CLRS).

link|flag
A little more information about the difference between the two would be useful – Simucal Jan 22 at 23:01
I'm impressed. Your answer is simple, clear, concise, thorough, …and completely incomprehensible (to me). :-) – Ben Blank Jan 22 at 23:31
Ben, you mean I should delete it or shouldn't ever try to teach anybody? lol – Mehrdad Afshari Jan 22 at 23:33
No, don't. It's very good. – duffymo Jan 22 at 23:40
2  
You have very high thoughts of my grandmother, I'm sure she would have approved of you. – unwind Jan 23 at 8:17
show 9 more comments
vote up 9 vote down

one is Big "O"

one is Big Theta

http://en.wikipedia.org/wiki/Big_O_notation

Big O means your algorithm will execute in no more steps than in given expression(n^2)

Big Omega means your algorithm will execute in no fewer steps than in the given expression(n^2)

When both condition are true for the same expression, you can use the big theta notation....

link|flag
This actually makes sense to me. – mabwi Jan 23 at 0:58
1  
But is wrong! The number of steps is bounded above by n^2 as n gets very large. However, an algorithm that runs in n^2 + c steps takes more than n^2 steps, but is still O(n^2). Big-O notation only describes asymptotic beahviour. – HenryR Jan 23 at 10:09
This is not a end all be all definition. It's just a launching point.... Since we are talking about asymptotic notations as n approaches infinity. The constant C becomes a non factor. – Kendrick Wilson Jan 23 at 17:13
vote up 8 vote down

There's a simple way (a trick, I guess) to remember which notation means what.

All of the Big-O notations can be considered to have a bar.

When looking at a Ω, the bar is at the bottom, so it is an (asymptotic) lower bound.

When looking at a Θ, the bar is obviously in the middle. So it is an (asymptotic) tight bound.

When handwriting O, you usually finish at the top, and draw a squiggle. Therefore O(n) is the upper bound of the function. To be fair, this one doesn't work with most fonts, but it is the original justification of the names.

link|flag
vote up 2 vote down

f(n) belongs to O(n) if exists positive k as f(n)<=k*n

f(n) belongs to Θ(n) if exists positive k1, k2 as k1*n<=f(n)<=k2*n

http://en.wikipedia.org/wiki/Big_O_notation

link|flag
You missed a crucial point - these are true only for all n > n1, i.e. asymptotically. – HenryR Jan 23 at 10:11
vote up 1 vote down

That character is Theta, by the way. I think this wikipedia article will explain big-O, big-theta, and others quite well...

link|flag

Your Answer

Get an OpenID
or

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