BlackWyvern said:
I'm quite interested to find out if there's a simple method you can use on paper and a pocket calculator to find a solution, other than bisection.
The solution to the equation 0=\sqrt{3}x + e^x can expressed in terms of the special function called the
Lambert[/PLAIN] W function. Have a go at it; I'll supply help if you need it.
Unfortunately, calculators don't have a W button like they do a sin button. This is the punchline to a joke.
Question: What's the difference between an elementary function and a special function?
Answer: an elementary is used so often that it's a button on a standard scientific calculator; a special function (for example, a Bessel function) often is used, but not so often that it's a button on a standard scientific calculator.
Just as numerical algorithms are used to evaluate special functions, numerical algorithm are used to evaluate elementary function. We don't see this, because the numerical algorithms are hard-wired into our calculators.
For example, to find sin(24.761) (argument in radians), we just punch it into our cakculator. But what does the calculator do? It probably evalutes a suitable number of terms of
sinx = x - \frac{x^3}{6} + \frac{x^5}{120} - \frac{x^7}{5040} + ...
Now, for x=24.761, this series doesn't coverge very quickly, so the calculator probably "knows" (via symmetry properties) stuff like sin(24.761) = -sin(0.371) (approximately), which, for a given accuracy, allows for evaluation of fewer terms in the series.
Back to the original question.
The solution can also be solved using the method of successive approximations, which is fairly easy to do by hand on a calculator. This is how I found x. This was particularly easy to automate on old programmable calculators. Drawbacks: 1) a little more cumbersome (maybe) to implement on today's programmable calculators; 2) convergence isn't guaranteed.
Finally, the W function is one of Maple's built-in functions.