Recently I was going through a problem from the book Problems in Mathematics - *V Govorov & P Dybov* . $$(x-2)^{\log^2(x-2)+\log(x-2)^5-12}=10^2\log(x-2)$$
I tried solving by first considering $\log(x-2)$ as a variable, say $t$. Then I expressed $(x-2)$ as $10^t$ . Then after using some properties of log, I reached till here- $$10^{t^3+5t^2-12t}=10^2t$$ or $$10^{t^3+5t^2-12t-2}=t$$ Now I have no idea how to approach further. The answer in the references says ${x=3, 102, 2+10^{-7}}$
Equations such as $$f(t)=10^{t^3+5t^2-12t-2}-t=0$$ cannot be solve using analytical methods and numerical methods, such as Newton, should be used.
As you probably notice, you are looking for the intersection of two curves, namely $$y_1(t)=10^{t^3+5t^2-12t-2}$$ $$y_2(t)=t$$
If you plot the functions on the same graph, you should notice a clear intersection around $t=1.9$. There is also a root close to $t=0$ since, around this value, a Taylor expansion gives $$y_1(t)= \frac{1}{100}-\frac{3}{25} t \log (10)+O\left(t^2\right)$$ which has a negative slope while $y_2(t)$ has a positive slope. Using this expansion gives another estimate close to $$t=\frac{1}{4 (25+3 \log (10))} \simeq 0.00783509$$
So, let us define the overall function $$f(t)=10^{t^3+5t^2-12t-2}-t$$ and let us try to find its roots starting from a given estimate $t_0$. Newton procedure will update this guess accodring to $$t_{n+1}=t_n-\frac{f(t_n)}{f'(t_n)}$$ For the first solution, let us start at $t_0=0$; Newton iterates are then : $0.00783509$, $0.00801852$, $0.0080186$ which is the solution for six significant figures.
For the second solution, let us start at $t_0=1.9$; Newton iterates are then : $1.91187$, $1.90970$, $1.90959$ which is again the solution for six significant figures.
Since, from your changes of variable $x=2+10^t$, the solutions are then $x=3.01864$ and $x=83.2064$ which are the values given by Tunococ.