What in exact formal manner does the next expression mean:

f(n)=2^O(n) ?

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

The statement f(n) = 2^O(n) is equivalent to

log_2(f(n)) = O(n)

(actually, any logarithm will do), so it means that there is some constant C > 0 such that

log_2(f(n)) <= C*n  <=> f(n) <= 2^(C*n)

for all large enough n. Now, ab*c = (ab)c, so another way to put it is to say

f(n) = O(b^n)

for some b > 0. This b could be 1.5, or 4, or 1000000000000, so it doesn't tell you too much. All it gives you is that f is exponential, so it's asymptotically better than O(n!), but it doesn't tell you whether it's pretty bad, bad, really bad or truly catastrophically bad.

link|improve this answer
feedback

The correct way would be to have 2n as the bounding function.

O(2n)

link|improve this answer
feedback

f(x) = O(g(x)) as x→infinity if and only if there exist two numbers M and y such that for all x > y, |f(x)| ≤ M |g(x)|.

So, applying this to your expression, there exists two numbers M, y such that for all n > y, |f(n)| ≤ 2M |n|. The right hand side of that is just equal to 2M·2|n|, so the original expression is actually equivalent to f(n) = O(2n).

For more information, check the formal definition on Wikipedia.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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