Big Oh Notation is used to describe the UPPER BOUND of a function.

Big Oh is always the fastest growing component of a function, so, O(n) + O(n!) = O(n!) O(n) + O(n) = O(n)

The names for each type of Big Oh are as such