Doing a homework of a related course, I reached to the following equation:
$$1 + 2x = e^x$$
By inspection, $x$ can be zero, but plotting $f(x) = 1 + 2x - e^x$, I can see that it has another root near 2. For my problem (It is a physics problem), due to dimension constraints, $x$ cannot be zero, nor can it be negative, so that solution around 1.25 is the solution I am looking for, however I don't want a numerical approximation. Is there a way of approximating this, more theoretically? (I mean using taylor series or something?, or getting the exact solution if it is possible?)
Given that we know the solution is about $1.25$ we can use the Taylor series very well. Let $y=x-\frac 54$ and your equation becomes $2y+\frac 72=e^{\frac 54}e^y$ with $y$ rather small (about $0.0064$). Use as many terms of the Taylor series as you feel like. If we use the quadratic, we get $2y+\frac 72=e^{\frac 54}(1+y+\frac {y^2}2)$ or $$\frac 12e^{\frac 54}y^2 +(e^{\frac 54}-2)y+e^{\frac 54}-\frac 72=0$$ which you can solve with the quadratic formula. It will be quite accurate because we expanded near the root. It would be even more accurate to use $y=x-1.2564$ to make $y$ small and the neglected terms of the Taylor series smaller. I don't understand why this is better than a numeric approach, but it meets the request.