I am trying to solve the following equation \begin{align} x = a(1-c \exp(-bx)) \end{align} for some $a>0$, $c \in (0,1)$ and $b\in (0,1)$.
One can find an exact solution for this equation in terms of Lambert_W function, which is given by \begin{align} x=\frac{W\left(-a b c e^{-a b}\right)}{b}+a \end{align} However, this not very useful for me.
I was wondering if instead, we can find an upper bound on the solution in terms of standard functions.
You can use a linear approximation for the exponential to get an upper bound for the solution. Note that $-e^{-bx} \leq -1+bx$. This gives $$x=a(1-ce^{-bx}) \\ x \leq a(1-c(1-bx)) \\ x \leq \frac{a(1-c)}{1-abc}$$
This works well when b is small. You could do an asymptotic expansion about $0$ for b if the answer when b is small is important, or a cubic approximation. A quadratic approximation is easily solvable but would give a lower bound instead.