Big-O Explained

Jacob Clark
5 min readFeb 25, 2017

Asymptotic notation is a set of languages which allow us to express the performance of our algorithms in relation to their input.

There are three main notations for expressing the performance of algorithms, put simply they are:

  • Big-O — The worst case (upper bound).
  • Big Omega — The best case (lower bound).
  • Theta — The upper and lower bounds.

In this post I’m going to focus on how we can prove Big-O — as we often want to plan for the worst case running time of software, rather than the best.

Big-O through code

Lets take the following Python example which takes an array, iterates over it and prints each value of that array:

def print_values(array):
for i in array:
print i

We could put a timer at the beginning and the end of the line of code which calls this function, lets say our input is [1, 2, 3, 4, 5], this would then give us the running time of our algorithm, right?

start = time.time()
print_values([1, 2, 3, 4, 5])
end = time.time()
print(end - start)

Maybe, but what if you run it again, three times, write down your results and then move to another machine with a higher spec and run it another three times. I bet upon comparison of the results you will get different running times!

This is where asymptotic notations are important. They provide us with a mathematical foundation for representing the running time of our algorithms consistently.

We create this consistency by talking about operations our code has to perform. Operations such as array lookups, print statements and variable assignments.

If we were to annotate print_values with the amount of times each line within the function is executed for the input [1, 2, 3, 4, 5], we would have something as follows:

def print_values(array):
for i in array: # Execution count: 5
print i # Execution count: 1

If we were to change the input to an array of a different size, our print statement would be exercised more or less, depending on the size of that input.

If we were to put this into an arithmetic expression, we would get 5+1, using intuition we know that the 5 is variable on the input size, if we call the input size n, we would now have the expression n+1.

I could now argue that the worst case running time for print_values is O(n+1). n for the loop block and 1 for the print statement. Clearly this is oversimplified and taken at face value as I'm not really interested in how this code is being executed under the hood, I just care about the operations defined solely within my above function.

In the grand scheme of things, the constant value 1 is pretty insignificant at the side of the variable value n. So we simply reduce the above expression to O(n), and there we have our Big-O running time of print_values.

As our code prints each and every value from the input array, it must in turn look at each value within that array in order to print it, as the loop is the most significant part of the code, we are able to say that our code is of running time O(n) where n is the variable length of the array! Simples!

An algorithm of running time O(n) is said to be linear, which essentially means the algorithms running time will increase linearly with its input (n).

Proving Big-o

We can prove, mathematically, that print_values is in-fact O(n), which brings us on to the formal definition for Big-O:

f(n) = O(g(n)) if c and some initial value k are positive when f(n) <= c * g(n) for all n > k is true.

We can turn this formal definition into an actual definition of our above code, which we can then in turn prove.

We must first ask does print_values have a running time of O(n)?

If print_values <= c n, when c = 1 then print_values does have a running time of O(n) when n > k.

c can be any integer while k is the amount of iterations we must perform for the expression to be true for every subsequent value of n.

As c is just 1, we can simplify our expression to print_values <= n.

nf(n)g(n)True/False000False111True222True333True

We can see that n must be greater than the value 0 of constant k in order to satisfy the expression print_values <= n.

We can now say when n is 1: 1 <= 1 * 1 for 1 > 0 is true. We know this because 1 multiplied by 1 is 1 and 1 is greater than our constant k which was 0.

The above must be true for all values of n greater than k (0), so if n was 10: 10 <= 1 * 10 for 10 > 0 is also true.

What we’re basically saying here is that no matter our input (n), it must be greater than or equal to our constant (c) when the size of our input (n) is more than another constant value (k), in our case the iteration count of the function).

But where do our constants come from? Well they are just values, we typically start at 1 and work our way up to seek a constant which makes the expression f(n) <= c * g(n) for all n > k true. If we cannot find such combination of constants, then our code does not have a running time of O(n) and our hypothesise was incorrect.

Disproving Big-O

Lets take a new Python example which takes an array, iterates over it and then prints the array value as many times as the arrays length.

def print_values_with_repeat(array):
for i in array:
for x in range(0, len(array)):
print i

If we were to annotate print_values_with_repeat with the amount of times each line within the function is executed for the input [1, 2, 3, 4, 5], we would have something as follows:

def print_values_with_repeat(array):
for i in array: # Execution count: 5
for x in range(0, len(array)): # Execution count: 25
print i # Execution count: 1

Does print_values_with_repeat have a running time of O(n)?

nf(n)g(n)True/False000False111True242False393False

Suppose our constant c is 1, 1 <= 1 * 1 for 1 > 0, this is true - however our definition says that g(n) must be greater than all values of f(n).

So if we take the value 2 of n 2 <= 1 * 4 for 1 > 0, we can see that this is now false, which disproves our hypothesis that print_values_with_repeat is O(n). Even if we change our constant c to 2, this would still prove false eventually.

We can actually see that the order of growth in operations in print_values_with_repeat is actually n^2, so let's hypothesise now that print_values_with_repeat is actually O(n^2).

Does print_values_with_repeat have a running time of O(n^2)?

nf(n)g(n2)True/False000False111True244True399True

Suppose our constant c is still 1, our expression would now be 3 <= 3 * 32for 3 > 0, this is true, great! print_values_with_repeat is in-fact O(n^2).

O(n^2) is a quadratic time algorithm, as the running time of the algorithm increases quadratically to the input.

Where to next

There are some fantastic resources on the web to further your understanding on asymptotic notation, here are a few:

Found something inaccurate or incorrect, please submit a pull request, all improvements will be attributed accordingly.

Visit my website, follow me on Twitter and GitHub or view my professional background on LinkedIn.

--

--