I need to solve some logarithm equations and unfortunately I've been trying for a while to solve it but without success.
The problems are:
1) For what values of N is $10NlgN > 2N^2$
My Answer: $10lgN > 2N$ ==> $lgN^{10}$ > $2N$ ==> $N^{10} > 2^{2N}$
And I do not know hot to continue
2) For what values of $N$ is $N^{3/2}$ between $N(lgN)^2/2$ and $2N(lgN)^2$
lgN = binary logarithm (base 2)
Many thanks :)
Look along powers of 2 to find 2 powers where the inequality switches, since it always will fail for large $N,$ the log function is dominated by all polynomials. Then numerical binary search will do it. This will work for both, I demonstrate one.
1) $\lg N>N/5$: $N=2^4$ gives $4>16/5$, which is fine but $N=2^5$ gives $5>32/5$ which is false. So it is some $N \in (16,32).$