I'm struggling a lot with a problem I encountered in AoPS:
Solve for $x$ if $2^{16x}=16^{2^x}$
I got it down to $\log_2(x)=x-2$
The solution is 4, but how do I get this without using graphics? Is there a way of algebraic manipulation that gives me $x=4$ ?
Thank you so much,
Tobias
$$16=2^4\therefore 16^{2^x}=2^{2^{x+2}}$$ Thus $$16x=2^{x+2}\to 2^x=4x$$ You can then iterate: $$x_{n+1}=\frac{2^{x_n}}{4}, x_0=1$$ To find one solution at approximately $0.3099069324$
And iterate: $$x_{n+1}=\log_{2}{(4x_n)}, x_0=1$$ To see this converge on the other solution of $4$.
We can then verify this by plugging in $x=4$ to $2^x=4x$ and see that it works out.