I am trying to see if there is an actual numerical solution for $n$ in the equation $n = \sqrt[n]{2^{3.6\times 10^{13}}}$. According to the solutions manual for an algorithm book and chegg, $n = 9 \times 10^{11}$. How did they arrive at this solution for $n$? It is confusing knowing that $n$ has to be evaluated to something to get an approximation, but how are they approximating it?
The question originally asked was that a computer can perform $10^{10}$ operations per second. Now it is asking what is the largest input size $n$ for which you could obtain a result in 1 hour. $n\log n$ is one of the input sizes. This was what I did
$ n = 60 \times 60 \times 10^{10} = 3.6^{13}$, how much it can perform in a hour. And,
$n\log n = 3.6^{13}$
$2^{n\log n} = 2^{3.6^{13}}$
$n^{n} = 2^{3.6^{13}}$
$n = \sqrt[n]{2^{3.6\times 10^{13}}}$
Hint : Logarithming the equation gives $$\ln(n)=\frac{3.6\cdot 10^{13}\cdot \ln(2)}{n}$$ This equation is easier to analyze.