O-notation
Intuition: as n increases, the performance of the function is dominated by the highest order term.
Since we’re interested in the general characteristic of the algorithm, we also ignore the constant of proportionality (coefficient of leading term); similarly the base of logarithms.
So ax2 + by + c becomes O(n2)