For the two functions f(n) and g(n), where $f(n) = n^{1/2}$ and $g(n) = 2^{(\log_2 n)^{1/2}}$, I am trying to determine whether $f$ is asymptotically bound below by $g$, i.e find whether there exists an N1 and a k1 > 0 such that:
$ f(n) >= k1 * g(n)$, for all n >= N1.
By taking the log of both $f(n)$ and $g(n)$ I got:
$f(n) = n^{1/2} = logn^{1/2} = 1/2*logn$.
$g(n) = 2^{(\log_2 n)^{1/2}} = log(2^{(\log_2 n)^{1/2}}) = (\log_2 n)^{1/2}log2$.
In trying to solve this I have:
$1/2logn >= k1 * (\log_2 n)^{1/2}log2$
Setting k1 to 1/2:
$1/2logn >= 1/2 * (\log_2 n)^{1/2}log2$
Dividing both sides by 1/2:
$logn >= (\log_2 n)^{1/2}log2$
Subtracting $(\log_2 n)^{1/2}log2$ from both sides:
$logn - (\log_2 n)^{1/2}log2 >= 0$
I can probably figure out whether there is any N1 such that the above is true for all n >= N1 by substituting values. However, I was wondering if there is any way to further simplify the above expression. In particular is there any way to get rid of the $(\log_2 n)^{1/2}$ entirely? I would prefer all the logs in the inequality to have the same base. Any insights are appreciated.