Without worrying about the background, I have a question that asks to solve for n. Pardon my formatting, but it seems understandable this way for the time being until I edit it:
$$4n^2 = 256 \log_2n$$
I'm not looking for the answer (it's 16), but I want to know the process to begin simplifying the right side.
Thank you in advance
One way to solve it :
Since $n$ is an integer, and you have a base-2 $log$, then $n$ can be written as : $$n = 2^{k}$$ with $k > 0$ (at first).
After rearranging the initial expression, you end up with : $$k = 2^{2k-6}$$
Now, you can see that :
$k > 3$ and $k$ is even. So, if you try with $k=4$... $$2^{2*4 -6} = 2^{8-6} = 2^2 = 4 = k$$
And since $n=2^k$, you have $n=2^4= 16$.