What in exact formal manner does the next expression mean:
f(n)=2^O(n) ?
|
What in exact formal manner does the next expression mean:
| ||||
|
feedback
|
|
The statement
(actually, any logarithm will do), so it means that there is some constant
for all large enough
for some | |||
|
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. | ||||
|
feedback
|