I was wondering how $n^3$ compares to $2n^2 \log n$ as I thought that $n^3$ is $\Omega(n^2 \log n)$
but there is the fact that $n$ is $O(n \log n)$ so I wasn't sure whether it is bigO or $\Omega$
I was wondering how $n^3$ compares to $2n^2 \log n$ as I thought that $n^3$ is $\Omega(n^2 \log n)$
but there is the fact that $n$ is $O(n \log n)$ so I wasn't sure whether it is bigO or $\Omega$
Yes, $n^3$ grows asymptotically faster than $2n^2\log n$, so $n^3$ is $\Omega(n^2\log n)$.
This is the same as saying that $n^2\log n$ is $O(n^3)$, which should be well known -- since $n>\log n$ for all $n>0$, we have $n^3 \ge n^2\log n$ even before taking asymptotics.