I have been given this problem and I have to decide whether it it true or false.
$$ (\log_2 n)^{\sqrt{ \log_2 n}} = \mathcal{O}(n^{50}) $$
This is my solution. Let
$$ \text{Let } f(n)= (\log_2 n)^{\sqrt{ \log_2 n}} \text{ and } g(n)=n^{50} \\ $$ Now define two new functions.
$$ \text{Let } f^{*}(n):= \log {f(n)} \text{ and } g^{*}(n):= \log {g(n)} \\ $$
So,
$$ f^{*}(n):= \log {f(n)} = (\log_2({\log_2 n}))\sqrt{\log_2 {n}} = \mathcal{O}((\log n)^{3/2}) \\ g^{*}(n):= \log {g(n)} = 50\log_2n = \mathcal{O}(\log n) \\ $$ Now if we examine the asymptotic behaviour of these two functions we find that $$ f^{*} = \Omega(g^{*}) $$ Thus we can conclude that $f = \Omega(g)$. Hence, the statement is false.
Is my solution correct? I feel intuitively that $n^{50}$ is much bigger than $(\log_2 n)^{\sqrt{ \log_2 n}}$