$T(x) = \log(x2x!)$
use the property of log, $\log(x2x!)$ is equivalent to $\log(2x) + \log(x!)$
My approach is to prove big-$O$ and big-$\Omega$ for $T(x)$,then big-$\Theta$ just follows.
If I want to calculate big-$O$ and big-$\Omega$ for $T(x)$, can I treat $\log(2x)$ as a constant and ignore it since it's growth rate is so slow compare to $\log(x!)$?