This is a question from CLRS (3rd edition, Pg 61) :
I have to find out whether
$\log(n!) = o(\log(n^n))$
( Note it is Little-oh)
From this & this question, I can see why $\log(n!) = O(\log(n^n))$, however, I am having hard times proving the little oh.
The answer given here (CLRS Solutions - walkccc) is No meaning,
$\log(n!)$ is not $o(\log(n^n))$
Why is this true? My reasoning is that $\log(n^n)$ grows faster than $\log(n!)$, i.e. $\log(n!) < c \cdot \log(n^n)$ for all $c>0, n>n_0$, right?