Function Growth: Big-O Notation

The previous slide taught us that not only are the values of $2^n - 1$ larger than those of $n^2$ for large values of $n$ (specifically, $n \ge 5$), but also that the function $f(n) = 2^n - 1$ growth at a much bigger rate than $g(n) = n^2$. That is, even if we multiply $g(n) = n^2$ by a huge constant, the function $f(n) = 2^n - 1$ will still keep surpassing $g(n) = n^2$ for a large enough $n$.

A couple more fun facts: