Is the sum from i=1 to n for log(n/i) = Θ(n)?

I'm studying for a test and appreciate your help. This is what i did:

sum ( from i=1 to n ) log (n/i) = sum ( from i=1 to n )[log(n)-log(i)]
sum ( from i=1 to n )(log(n)) - sum ( from i=1 to n )(log(i))
nlog(n) - log(n!)
log(n^n/n!)

I don't see any other way but my teacher thinks otherwise..

link|improve this question

What's your reasoning? Why do you think it is Θ(n)? – Darin Dimitrov Oct 20 '11 at 21:31
Last test ( the one i failed) the teacher said this is the correct answer.. – Nusha Oct 20 '11 at 21:36
1  
This is a math, not a programming, question. – Patrick87 Oct 20 '11 at 21:40
feedback

closed as not a real question by Matt Ball, Darin Dimitrov, Austin Salonen, Patrick87, Graviton Oct 21 '11 at 4:32

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

ok. This is a very nesty question, but I have the solution for you:

as you mentioned, the sum is equals to log(n^n/n!). Now, our goal is to show that n^n/n! is from the form (some integer)^n, and then log(some-integer^n)=teta(n).

lets notate n^n/n! as A(n), and look on A(n+1)/A(n). You can see easily that A(n+1)/A(n)=(n+1)^n/n^n and when n->infinity then this devision is "e" (from calculus: lim(1+1/n)^n=e.

So you have here actually some kind of teta(log(e^n))=teta(n)

Hoped it helped and good luck at your exam

link|improve this answer
feedback

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