I know that
log (n!) =log (1) + log(2) + .... log(n-1) + log(n)
and
n*log(n)= log(n) + log(n) + .... + log(n) or just adding log(n)'s n times.
What constant can I multiply n*log(n) that makes it smaller than log(n!)?
I read a few solutions about it being n/2*log(n/2). What constant is that? half?
One solution is from here. Is log(n!) = Θ(n·log(n))?
If C = 1/2, then isn't it just (n/2)*log(n)? How does the n inside of log get affected or why did n become n/2 all of a sudden?
I know the log rule of log(a/b) = log a - log b. Does that rule help?