We have discussed Asymptotic Analysis, and Worst, Average and Best Cases of Algorithms. The main idea of Asymptotic Notations analysis is to have a measure of efficiency of algorithms that doesn’t depend on machine specific constants, and doesn’t require algorithms to be implemented and time taken by programs to be compared. Asymptotic notations are mathematical tools to represent time complexity of algorithms for asymptotic analysis. The following 3 asymptotic notations are mostly used to represent time complexity of algorithms.

1) Θ Notation: The theta notation bounds a functions from above and below, so it defines exact asymptotic behavior.
A simple way to get Theta notation of an expression is to drop low order terms and ignore leading constants. For example, consider the following expression.
3n3 + 6n2 + 6000 = Θ(n3)
Dropping lower order terms is always fine because there will always be a n0 after which Θ(n3) has higher values than Θn2) irrespective of the constants involved.
For a given function g(n), we denote Θ(g(n)) is following set of functions.

[ad type=”banner”] [pastacode lang=”c” manual=”%CE%98(g(n))%20%3D%20%7Bf(n)%3A%20there%20exist%20positive%20constants%20c1%2C%20c2%20and%20n0%20such%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20that%200%20%3C%3D%20c1*g(n)%20%3C%3D%20f(n)%20%3C%3D%20c2*g(n)%20for%20all%20n%20%3E%3D%20n0%7D” message=”” highlight=”” provider=”manual”/]

The above definition means, if f(n) is theta of g(n), then the value f(n) is always between c1*g(n) and c2*g(n) for large values of n (n >= n0). The definition of theta also requires that f(n) must be non-negative for values of n greater than n0.

2) Big O Notation: The Big O notation defines an upper bound of an algorithm, it bounds a function only from above. For example, consider the case of Insertion Sort. It takes linear time in best case and quadratic time in worst case. We can safely say that the time complexity of Insertion sort is O(n^2). Note that O(n^2) also covers linear time.
If we use Θ notation to represent time complexity of Insertion sort, we have to use two statements for best and worst cases:

1. The worst case time complexity of Insertion Sort is Θ(n^2).
2. The best case time complexity of Insertion Sort is Θ(n).

The Big O notation is useful when we only have upper bound on time complexity of an algorithm. Many times we easily find an upper bound by simply looking at the algorithm.

[ad type=”banner”] [pastacode lang=”c” manual=”O(g(n))%20%3D%20%7B%20f(n)%3A%20there%20exist%20positive%20constants%20c%20and%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20n0%20such%20that%200%20%3C%3D%20f(n)%20%3C%3D%20cg(n)%20for%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20all%20n%20%3E%3D%20n0%7D” message=”” highlight=”” provider=”manual”/]

3) Ω Notation: Just as Big O notation provides an asymptotic upper bound on a function, Ω notation provides an asymptotic lower bound.

Ω Notation< can be useful when we have lower bound on time complexity of an algorithm. As discussed in the previous post, the best case performance of an algorithm is generally not useful, the Omega notation is the least used notation among all three.

For a given function g(n), we denote by Ω(g(n)) the set of functions.

[ad type=”banner”] [pastacode lang=”c” manual=”%CE%A9%20(g(n))%20%3D%20%7Bf(n)%3A%20there%20exist%20positive%20constants%20c%20and%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20n0%20such%20that%200%20%3C%3D%20cg(n)%20%3C%3D%20f(n)%20for%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20all%20n%20%3E%3D%20n0%7D.” message=”” highlight=”” provider=”manual”/]

Let us consider the same Insertion sort example here. The time complexity of Insertion Sort can be written as Ω(n), but it is not a very useful information about insertion sort, as we are generally interested in worst case and sometimes in average case.

Exercise:

Which of the following statements is/are valid?

1. Time Complexity of QuickSort is Θ(n^2)

2. Time Complexity of QuickSort is O(n^2)

3. For any two functions f(n) and g(n), we have f(n) = Θ(g(n)) if and only if f(n) = O(g(n)) and f(n) = Ω(g(n)).

4. Time complexity of all computer algorithms can be written as Ω(1)

Categorized in: