Find $\Theta$ for these two: $log_8(n^2), n^{\frac{1}{logn}}$
The answers are: $log_8(n^2) = \Theta (log(n))$
For the second one it is $\Theta(1)$
Here's the solution for the second one which I entirely didn't understand:
$n^{\frac{1}{logn}} = m \rightarrow log(m) = \frac{1}{log(n)}log(n) = 1 \rightarrow m = 2 = \Theta(1)$
Taken from Intorudction to Algorithms $2$nd
For the first one, $$\log_8(n^2)=2\log_8(n)=2\cdot \frac{\log_2(n)}{\log_2(8)}=\frac{2}{3}\cdot\log_2 n.$$ For the second one, use the logarithm property: $a^b=2^{b\log_2 a}$. Then $$n^{\frac{1}{\log_2 n}}=2^{\frac{\log_2 n}{\log_2 n}}=2.$$
P.S. I assumed that you are interested in expressing all these numbers using the the binary logarithm $\log_2$.