Find the smallest integer constant $c$ such that $f(n) = \mathcal{O}(n^c)$.
There are two parts to this.
In the first part, $f(n) = \dfrac{n^2}{2}$.
From what I understand, if $f(n) = \mathcal{O}(n^c)$, then $$\dfrac{f(n)}{n^c} \leq x \implies \dfrac{n^{2}}{2n^{c}} = x$$ where x is some constant.
I don't know how to proceed from here though.
In the second part, $f(n)$ is $n (\log_{2} n)^3$.
I don't know how to operate with logs. Some guidance would be appreciated.