I've looking for a polynomial approximation for Lambert W Function around zero.
I am aiming at the range of $0\leq x\leq e$, and if possible then even $-e\leq x\leq e$.
The asymptotic expansion (when limited to a finite number of iterations of course), yields a polynomial approximation for the range of $-1/e\leq x\leq1/e$.
I've found the following polynomial approximation for the range of $0\leq x\leq e$ in this answer:
$$W_0(z)\approx\ln(1+z)\frac{1+\frac{123}{40}z+\frac{21}{10}z^2}{1+\frac{143}{40}z+\frac{713}{240}z^2}$$
I've tested it to my satisfaction, but I would like ask a few questions here:
- Can it be easily extended to the range of $-e\leq x\leq e$?
- The author of that answers explains something about Padé approximant, and says that one might do a better approximation (which he/she did not bother to find due to the question in context). Would anyone be able to shed light on how to compute a better polynomial approximation?
- Is there perhaps a different approach to my goal, unrelated of the answer above?
Thank you!