This is a homework question. I'm not expecting an answer, just some guidance, possibly :) I am to show that log(n!) = Θ(n·log(n)).

A hint was given that I should show the upper bound with nn and show the lower bound with (n/2)(n/2). This does not seem all that intuitive to me. Why would that be the case? I can definitely see how to convert nn to n·log(n) [log both sides of an equation], but that's kind of working backwards. What would be the correct approach to tackle this problem? Should I draw the recursion tree? There is nothing recursive about this, so that doesn't seem like a likely approach..

link|improve this question

71% accept rate
19  
+1 for honesty on homework and not asking for the 'codez' :) – Andrew Jan 19 '10 at 17:22
3  
MY BRAIN HURTS! – Terry Donaghe Jan 19 '10 at 17:32
Did you want to write O(log(n!))? I guess you want to have the upper run-time complexity. – Georg Schölly Jan 19 '10 at 17:53
You should really write it including the "as n -> ∞ " – CodeByMoonlight Jan 19 '10 at 18:49
1  
Fun exercise: use the similar trick to show that the harmonic series 1/1 + 1/2 + 1/3 + 1/4 + ... diverges to infinity. – Yoo Jan 19 '10 at 22:54
show 1 more comment
feedback

8 Answers

up vote 44 down vote accepted

Remember that

log(n!) = log(1) + log(2) + ... + log(n-1) + log(n)

You can get the upper bound by

log(1) + log(2) + ... + log(n) <= log(n) + log(n) + ... + log(n)
                                = n*log(n)

And you can get the lower bound by doing a similar thing after throwing away the first half of the sum:

log(1) + ... + log(n/2) + ... + log(n) >= log(n/2) + ... + log(n) 
                                       >= log(n/2) + ... + log(n/2)
                                        = n/2 * log(n/2) 
link|improve this answer
Interesting... Pushing this into a sum, there is an approximation that results in the theta notation itself (source: en.wikipedia.org/wiki/Summation) a matter of how that is derived is entirely separate. Nice lead, thanks! – Mark Jan 19 '10 at 17:40
2  
This is a very nice proof for the upper bound: log(n!) = log(1) + ... + log(n) <= n log(n) => log(n!) = O(n log n). However, for proving the lower bound (and consequently big-tetha), you'll probably need Stirling's Approximation. – Mehrdad Afshari Jan 19 '10 at 20:34
9  
You don't need Sterling's approximation for a lower bound. log(n!) = log(1) + ... + log(n) >= log(n/2) + ... + log(n) >= n/2 * log(n/2) = Omega(n log n). – Keith Randall Jan 19 '10 at 22:40
nice trick, I think it works. – ldog Jan 20 '10 at 2:23
2  
@j_random_hacker: log(n/2) + log(n/2 + 1) + ... + log(n - 1) + log(n) (larger half of the terms of log(n!)). Actually, I just read the question and saw that the clue is stated in the question. Basically, (n/2)^(n/2) <= n! <= n^n => log((n/2)^(n/2))<=log(n!)<=log(n^n) => Θ(n/2 * log(n/2))<=log(n!)<=Θ(n*log(n)) – Mehrdad Afshari Jan 21 '10 at 14:07
show 3 more comments
feedback

A lot of people are pointing you to stirlings formula to prove this. Although that is a perfectly acceptable route, you don't have to use if if you don't know it, and in fact you can show it in another way.

First off, stack overflow is horrible for math markup so what I'm going to write below is going to look ugly (nudge. nudge. devs of stackoverflow should follow math overflow's example and give some nice latex markup.)

That said, lets get on with things. The upper-bound log(n!) <= n log n is trivial.

The lower bound is not so trivial. I hope by now in your career you are familiar with Taylor series, if you aren't then you should quickly familiarize yourself with them because they are going to be one of your most potent tools for approximating things, or in this case bounds.

Note that

log(n!) = sum[i,1,n] (log i)
        = sum[i,1,n] ( log ( (i/n) * n ) )
        = sum[i,1,n] ( log ( (i/n) ) + log n ) )
        = sum[i,1,n] ( log ( i/n ) ) + sum[i,1,n] (  log n )
        = sum[i,0,n-1] ( log ( 1 - i/n ) + sum[i,1,n] (  log n )

now from taylor series

log( 1 - x ) = - sum[n,1, infinity] x^n/n  for -1 < x < 1

so

log( 1 - i/n ) = - sum[k,1, infinity] (i/n)^k/k
               = - (i/n)( 1 + (i/n)/2 + (i/n)^2/3 + ... )
              >= - ( 1 + (i/n)/2 + (i/n)^2/3 + ... )  since (i/n) < 1
              >= - ( 1 + (i/n) + (i/n)^2 + ... )   
               = - 1/(1-i/n) = n/(i-n)

so

log(n!) = sum[i,0,n-1] ( log ( 1 - i/n ) ) + sum[i,1,n] (  log n )
        = sum[i,0,n-1] ( log ( 1 - i/n ) ) + n log n
       >= sum[i,0,n-1] ( n/(i-n) ) + n log n
        = n sum[i,0,n-1] ( 1/(i-n) ) + n log n
        = - n sum[i,1,n] ( 1/i ) + n log n
        = n ( log n - sum[i,1,n] ( 1/i ) )

let H_n = sum[i,1,n] ( 1/i ), then there exists a positive 0 < c < 1 such that H_n <= c log n to see this note that

log(x) is bounded below by some a > 0 for all x > 2

and so the integral must be strictly greater than the sum (this is a general result for strictly positive functions that are bounded below by some a) :

H_n = sum[i,1,n] ( 1/i ) < integral[x,1,n] ( 1/x ) = log n  for n >= 2

thus there must exist a constant such that H_n <= c log n with 0 < c < 1.

Then we have that

log(n!) >= n ( log n - H_n )
        >= n ( log n - c log n )
         = ( 1 - c ) n log n

proving the result.

link|improve this answer
feedback

See Stirling's Approximation.

link|improve this answer
feedback

Helping you further, where Mick Sharpe left you:

It's deriveration is quite simple: see http://en.wikipedia.org/wiki/Logarithm -> Group Theory

log(n!) = log(n * (n-1) * (n-2) * ... * 2 * 1) = log(n) + log(n-1) + ... + log(2) + log(1)

Think of n as infinitly big. What is infinite minus one? or minus two? etc.

log(inf) + log(inf) + log(inf) + ... = inf * log(inf)

And then think of inf as n.

link|improve this answer
feedback

I realize this is a very old question with an accepted answer, but none of these answers actually use the approach suggested by the hint.

It is a pretty simple argument:

n! (= 1*2*3*...*n) is a product of n numbers each less than or equal to n. Therefore it is less than the product of n numbers all equal to n; i.e., n^n.

Half of the numbers -- i.e. n/2 of them -- in the n! product are greater than or equal to n/2. Therefore their product is greater than the product of n/2 numbers all equal to n/2; i.e. (n/2)^(n/2).

Take logs throughout to establish the result.

link|improve this answer
This is actually just the same as the log version in the accepted answer but taking the logarithm after instead of before. (it more clearly uses the hint though) – missingno Nov 3 '11 at 4:21
feedback

BigO is abut asymptotically. For qsort you can say that it can sort in n! order or less. That is true. But as I said BigO is about asymptotically.

In that case you should prove that some function lie between two functions and that there is lower and upper limit, and this helps you prove properties.

link|improve this answer
feedback

This might help:

eln(x) = x

and

(lm)n = lm*n
link|improve this answer
2  
Actually, that's wrong: 1^(m^n) != 1^(m*n) it must be (1^m)^n = 1^(m*n) – Pindatjuh Jan 19 '10 at 18:18
Errr I mean L instead of 1 in the above comment. – Pindatjuh Jan 19 '10 at 18:35
feedback

http://en.wikipedia.org/wiki/Stirling%27s_approximation Stirling approximation might help you. It is really helpful in dealing with problems on factorials related to huge numbers of the order of 10^10 and above.

enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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