Chapter 2 introduces the mathematical backgrounds of algorithm analysis.

Order of a Function

The 'Order' of a function describes how fast the function grows. Usually we use three notations to describe it.

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.

How to determine the orders' priorities of functions?

Order of a Recursive Expression

Recursive expression like $T(n)=3T(\frac{n}{2})+4\Theta(1)$ can have their order calculated by following methods.

Master Theorem (recommended)