All mathematical formulas can be inter-converted based on the identity:
e^(x + i*y) = 2^(x/ln2) * 1^(y/2Pi)
Most formulae from textbooks are written in such a way to be simpler with e^x and its inverse, but it is almost always possible to move the constants ln2 and 2Pi between various equations so that in the end they will disappear from most relations, with the exception of the derivation or integration formulae.
In most applications, more equations are simplified than those which become more complicated.
A very important advantage of 2^x and 1^x versus e^x is that for the former the reductions of the argument to the principal range where the function is approximated by a polynomial can be done with perfect accuracy and very quickly, unlike for the latter. Moreover, for the former it is easy to verify the accuracy of any approximation, because for any argument that is represented as a binary number the functions 2^x and 1^x can be computed with a finite number of sqrt invocations (based on the formulae for half angle) and sqrt can be computed with any number of desired digits. Computing e^x with an arbitrary precision is trickier, because it requires criteria for truncation of an infinite series.
It should be noted that 1^1.0 = 1, 1^0.5 = -1, 1^0.25 = i, 1^0.75 = -i
You have misunderstood my point. I have not said anything about polynomials.
I have said that the so called "natural" exponential, normally written as e^x or exp(x) of either real or complex argument and its inverse, the hyperbolic a.k.a. natural logarithm, and any other functions derived from it are neither needed nor useful when computations are done by computers, as opposed to computations done with pen and paper.
In all traditional formulae where the "natural" exponential function or functions derived from it occur, all occurrences can be replaced using a pair of functions of real argument, the function 2^x with real value and the function 1^x with complex value, either directly or with functions derived from this pair, e.g. the binary logarithm.
In computer programs this substitution results in both higher accuracy and higher speed and it has as a side effect that the units radian and neper are never needed.
It should be noted that even in the 19th century, when the "natural" exponential and logarithm and the trigonometric functions with argument in radians were useful for symbolic computations done by hand, they were never used for practical numeric computations.
All practical numeric computations were done using the function 10^x and the trigonometric functions with argument in degrees and their inverses, by using mathematical tables where the values of these functions were tabulated (or equivalently, by using slide rules).
The use of the "natural" exponential and logarithm and of the trigonometric functions with argument in radians for practical computations has become widespread only after the development of the electronic computers, after programming languages like Fortran have included them as standard functions.
I consider that this has been a mistake, similar to the use of decimal numbers in some computers. Both the use of decimal numbers and the use of the "natural" exponential and logarithm and of the trigonometric functions with argument in radians are sub-optimal in all their possible applications.