Big O notation Log Base 2 or Log Base 10

Computernerd picture Computernerd · Dec 20, 2013 · Viewed 49k times · Source

When articles/question state that the Big O running time of the algorithm is O(LogN) .

For example Quicksort has a Big O running time of O (LogN) where the it is Log base 10 but Height of binary tree is O(LogN+1) where it is Log base 2

Question

1)I am confused over whether is it Log base 10 or Log base 2 as different articles use different bases for their Logarithm .

2) Does it make a difference if its Log base 2 or Log base 10??

3)Can we assume it mean Log base 10 when we see O(LogN)???

Answer

Rahul Tripathi picture Rahul Tripathi · Dec 20, 2013

I think it does not matter what is the base of the log as the relative complexity is the same irrespective of the base used.

So you can think of it as O(log2X) = O(log10X)

Also to mention that logarithms are related by some constant.

enter image description here

So

log₁₀(x) = log₂(x) / log₂(10)

So most of the time we generally disregard constants in complexity analysis, and hence we say that the base doesn't matter.

Also you may find that the base is considered to be 2 most of the time like in Merge Sort. The tree has a height of log₂ n, since the node has two branches.

1)I am confused over whether is it Log base 10 or Log base 2 as different articles use different bases for their Logarithm .

So as explained above this change of base doesn't matter.

2) Does it make a difference if its Log base 2 or Log base 10??

No it does not matter.

3)Can we assume it mean Log base 10 when we see O(LogN)???

Yes you can assume that provided you know the base conversion rule.