Not solvable in a closed form using algebraic functions. It is a typical and well-known trascendental equation that has as a solution a special function called the Lambert W function. This function is defined as a principal branch of the solution of
In your case, this is almost directly what you have. Rearrange:
giving
You need to solve for it numerically, or call ProductLog in Mathematica, which implements this function. A numerical solution is pretty straight-forward with a calculator. Write and now you have
Start somewhere reasonable (like ) and repeatedly plug it into this expression. You get a reasonable approximation in a few iterations:
Almintas2l
Beginner2022-07-21Added 6 answers
If you want to solve numerically
you can use very fast numerical methods. For example, Newton iterations will write
Starting at will provide the following successive iterates : , , which is the solution. As another example, Halley iterations will write
Starting at will provide the following successive iterates : , which is the solution.