Chapter 2 introduces the mathematical backgrounds of algorithm analysis.
The 'Order' of a function describes how fast the function grows. Usually we use three notations to describe it.
$\Theta$ notation describes the exact order of a function. For example:
This figure shows the asymptotic relationship between $f(n)$ and $g(n)$ when $f(n)=\Theta(g(n))$
$O$ notation describes the asymptotic upper bound of a function. For example:
This figure shows the asymptotic relationship between $f(n)$ and $g(n)$ when $f(n)=O(g(n))$.
$\Omega$ notation describes the asymptotic lower bound of a function, just something similar to the $O$ notation.
Besides $\Theta$, $O$ and $\Omega$, there're two another types of notations: $o$ and $\omega$. They are more strict than the upper-case notations, for instance:
There're the orders of some common functions:
$$ \Theta(1)<\Theta(\lg{n})<\Theta(\sqrt n)<\Theta(n)<\Theta(n\lg n)<\Theta(n^k)<\Theta(k^n)<\Theta(n!) $$
where $k$ is a constant no smaller than 2.
NOTICE: Not all functions have asymptotic bounds.
Recursive expression like $T(n)=3T(\frac{n}{2})+4\Theta(1)$ can have their order calculated by following methods.