Is there any easy way (no numerical methods, just a straightforward way to do it by hand) to solve an equation like:
\begin{equation}\frac{-34450}{x} - 2.01\ln(x) + 33.74 = 0\end{equation}
It is a step in a bigger problem that I'm trying to solve and the solution that was given to me just says "just solve the equation" as if that step was naturally trivial, but I can't see it.
A completely nice and analytical solution to this equation doesn't exist, the best attempt uses the Lambert W function, which is the inverse of $$xe^x$$ so $$W(xe^x)=x$$ Before applying this we need to move some things around: substitute $x=e^u$ and obtain$$-34450e^{-u}-2.01u+33.74=0$$ Let's call the constants a,b,c all positive real values and substituting $y=c-bu$ gives $$-ae^{\frac{y-c}{b}}+y=0$$ rearanging gives $$-\frac{a}{b}e^{-\frac{c}{b}}=-\frac{y}{b}e^{-\frac{y}{b}}$$ and after applying Lambert W we get $$y=-bW(-\frac{a}{b}e^{-\frac{c}{b}})$$ and resubstituting $$x=\exp(\frac{c}{b}+W(-\frac{a}{b}e^{-\frac{c}{b}}))$$