I can handle most equations I have seen which have only an exponential or only a logarithm, but I am stumped by an equation/expression that contains both. How do I solve for x here:
$$e^{-x^2} = \ln(x)$$
My calculator says the answer is approx 1.23 but I don't know the steps to get there. Even Wolfram Alpha does not show the steps.
This is one of many, many equations where we can't solve for $x$ analytically. This frequently happens when we combine two different types of functions in an equation, from among the basic types: exponential, trigonometric, polynomial, inverse trigonometric, logarithmic.
In some cases, when certain combinations come up often enough in practice, we have invented special functions that we can use to write down solutions, such as sometimes when Wolfram Alpha gives you a solution in terms of the Lambert W-function, or something like that.
In this case, you could rewrite your equation as either $-x^2=\ln\ln x$, or $e^{e^{-x^2}}=x$, but neither of these is helpful. We're either mixing exponentials with logs, exponentials with polynomials, or logs with polynomials. This is the sort of situation for which numerical methods exist. At the simplest level, there is the bisection method; much faster methods exist, including Newton's and others.