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..