I am trying to obtain an approximation for $e^x$ of the form $\frac{ax+b}{cx+d}$ using the Maclaurin series for $e^x$.
$\frac{ax+b}{cx+d}=e^x=1+x+\frac{x^2}{2}+\cdots\approx 1+x \\ ax+b = (1+x)(cx+d)=d+x(c+d)+cx^2\approx d+x(c+d) \\ 0 = (d-b) + x(c + d - a)$
which gives rise to two constraints: $d=b$ and $c+d-a=0\Rightarrow d = a-c=b$, which after substituting back into the original expression produces $$ e^x\approx \frac{ax+a - c}{cx + a - c}=\frac{a(x+1)+c}{c(x-1)-a} $$
Which reduces the expression down to 2 variables however I have no idea how to solve for the coefficients.