vote up 10 vote down star
1

For binary search tree type of data structures, I see the Big O notation is typically noted as O(logn). With a lowercase 'l' in log, does this imply log base e (n) as described by the natural logarithm? Sorry for the simple question but I've always had trouble distinguishing between the different implied logarithms.

flag

13  
As others have cogently pointed out, it doesn't matter. All logarithms differ from each other by a constant only dependent on the bases involved. Because these factors are constants, they are irrelevant for the purposes of asymptotic analysis. Second, as far determining the implied base, it depends on context. As a rough rule of thumb use the following: 1. When a mathematician writes log n he means the natural logarithm. 2. When a computer scientist writes log n he means base-two. 3. When an engineer writes log n he means base-ten. These are usually true. – Jason Oct 15 at 1:50
2  
Nice meeting you, and thanks for reading some verbiage. Also, kudos on a 100% accept rate. – Heath Hunnicutt Oct 15 at 2:00
@Jason, another convention (within mathematics) is that ln n means the natural logarithm and log n is base ten. Think ln stands for the French 'logarithm naturelle'. – Rock and or Roll Oct 20 at 23:24
The base of the logarithm is the number of children each node has. If it's a binary tree then it's a base 2 log. – Paul Dec 4 at 5:50

6 Answers

vote up 10 vote down check

Once expressed in big-O() notation, both are correct. However, during the derivation of the O() polynomial, in the case of binary search, only log2 is correct. I assume this distinction was the intuitive inspiration for your question to begin with.

Also, as a matter of my opinion, writing O(log2 N) is better for your example, because it better communicates the derivation of the algorithm's run-time.

In big-O() notation, constant factors are removed. Converting from one logarithm base to another involves multiplying by a constant factor.

So O(log N) is equivalent to O(log2 N) due to a constant factor.

However, if you can easily typeset log2 N in your answer, doing so is more pedagogical. In the case of binary tree searching, you are correct that log2 N is introduced during the derivation of the big-O() runtime.

Before expressing the result as big-O() notation, the difference is very important. When deriving the polynomial to be communicated via big-O notation, it would be incorrect for this example to use a logarithm other than log2 N. As soon as the polynomial is used to communicate a worst-case runtime via big-O() notation, it doesn't matter what logarithm is used.

link|flag
But it's very easy to show that log_2 n is in Θ(log_a n) for any base a, so I'm not sure I see how using base 2 is "more correct". – bcat Oct 15 at 0:34
Sorry, what does "easily typeset" mean? – Kinopiko Oct 15 at 0:35
1  
Kinopkio and bcat, thanks for helping it become useful. It was not very well-written at first. :) – Heath Hunnicutt Oct 15 at 1:04
1  
Well I added clarity but I sure am hurt that you think my answer might confuse people. Actually, most of the answers here didn't consider the OP's intuition and try to teach him much. I'm not so much wowed by the competition, I'm kind of sad at the low bar for pedagogy. – Heath Hunnicutt Oct 15 at 1:14
5  
"during the derivation of the O() polynomial, in the case of binary search, only log2 is correct." -1 for poor mathematics. The definition of x(n) ~ O(f(n)) says that there exists a constant c such that c*(f(n)) < x(n) for all n > n_0. Thus the constant coefficient is completely irrelevant during the analysis. – rlbond Oct 15 at 2:11
show 18 more comments
vote up 34 vote down

Big O notation is not affected by logarithmic base, because all logarithms in different bases are related by a constant factor, O(ln n) is equivalent to O(log n)

log relation equation

link|flag
Nice graphics 15 – Kinopiko Oct 15 at 0:56
2  
the graphics are neat but think about the derivation of the O()-polynomial... before O() is applied, only log-base-2 is correct for binary search. – Heath Hunnicutt Oct 15 at 0:57
1  
Jason - you misread "before O() is applied". See my answer below also. Cade is certainly correct for the O() notation. However I am talking about the pre-O()-notation derivation and my suggestion is that there is a human-understanding reason, as opposed to a mathematical reason, that log_2 x is more clear than log x once you do translate to O(). – Heath Hunnicutt Oct 15 at 1:03
2  
But why are you talking about that, when it bears no relation to the question and only serves to confuse? – hobbs Oct 15 at 1:06
1  
hobbs: Because that fact is the reason the OP was inspired to inquire. I'm trying to connect his ideas with the answer, so he understands why he had his intuition, why it does not apply to O(), but not to over-apply what he learns here to the derivation part of the analysis. The terse answers which don't address the root cause of the misunderstanding may lead to further misunderstanding. It's bad pedagogy. – Heath Hunnicutt Oct 15 at 1:16
show 5 more comments
vote up 13 vote down

It doesn't make any difference. logx n = C logy n for any x and y, where C is a constant which the O() makes irrelevant.

O notation only deals with the rate of growth relative to n, so

O(1000,000 n2) = O(0.0000000001 n2) = O(n2),

so here, because

logen = loge2 log2 n,

O(logen) = O(log2 n)

since loge2 is a constant.

link|flag
vote up 4 vote down

It doesn't really matter what base it is, since big-O notation is usually written showing only the asymptotically highest order of n, so constant coefficients will drop away. Since a different logarithm base is equivalent to a constant coefficient, it is superfluous.

That said, I would probably assume log base 2.

link|flag
1  
-1 That's wrong. – Kinopiko Oct 15 at 0:33
@Kinopiko: What exactly is wrong about it? More precisely, how is my answer factually different from yours and others here? – Daniel Pryden Oct 15 at 0:37
Ah, perhaps my mistake in the use of "coefficient". I will edit to clarify. – Daniel Pryden Oct 15 at 0:38
That was my main issue with your answer. Also, it's a bit unclear what you mean by "they will still have some effect". Some effect on what? – bcat Oct 15 at 0:39
Your answer discusses the highest order coefficients. What you said is correct as far as it goes, but that is not the reason that the logarithm base is irrelevant. The reason is that the difference between different base logarithms is a constant which is absorbed by the O(). – Kinopiko Oct 15 at 0:40
show 5 more comments
vote up 2 vote down

Technically the base doesn't matter, but you can generally think of it as base-2.

link|flag
vote up 0 vote down

Yes, when talking about big-O notation, the base does not matter. However, computationally when faced with a real search problem it does matter.

When developing an intuition about tree structures, it's helpful to understand that a binary search tree can be searched in O(n log n) time because that is the height of the tree - that is, in a binary tree with n nodes, the tree depth is O(n log n) (base 2). If each node has three children, the tree can still be searched in O(n log n) time, but with a base 3 logarithm. Computationally, the number of children each node has can have a big impact on performance (see for example: link text)

Enjoy!

Paul

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.