Examples

Common Growth Functions

Untitled

Big-Omega (Best Case)

Definition:

Let $f$ and $g$ be functions from $N$ to $R$,

$f(x)$ is $\Omega (g(x))$ if there exist constants $C > 0$ and $k$ such that $|f(x)|\space ≥ \space C|g(x)|$ for all integers $x > k$

Big-O and Big-Omega Connection:

Big-Theta (Exact Case)

Definition:

Let $f$ and $g$ be functions from $N$ to $R$,

$f(x)$ is $\Theta(g(x))$ if $f(x)$ is $O(g(x))$ and $f(x)$ is $\Omega(g(x))$

When f(x) is $\Theta$(g(x)), we say that…