Suppose I have a system of linear ODE
$$\dot x = Ax + b$$ where $A \in \mathbb{R}^{n \times n}, b \in \mathbb{R}^n$
I know that when $b = 0$, using Laplace transform we have $x(s) = (sI-A)^{-1} x(0)$, which upon inverting (pg.13) we obtain $x(t) = e^{At}x(0)$
However, when $b$ is non-zero, the Laplace transform gives
$$x(s) = (sI-A)^{-1}x(0) + (sI-A)^{-1}\dfrac{b}{s}$$
I have no idea how to invert $(sI-A)^{-1}\dfrac{b}{s}$
Does anyone know how to solve for this?
Some thoughts,
$(sI-A)^{-1}\dfrac{b}{s} = (sI-A)^{-1}(sI)^{-1}b = ((sI)(sI-A))^{-1}b = (s^2I - sA)^{-1}b$
As an alternative approach, we can use a technique that you might have seen for solving the inhomogeneous scalar differential equation $\dot x= kx+b(t)$: guess that a particular solution is of the form $\mathbf x(t) = \exp(tA)\mathbf w(t)$. Substituting this into the differential equation gives $$A e^{tA}\mathbf w(t)+e^{tA}\dot{\mathbf w}(t) = Ae^{tA}\mathbf w(t)+\mathbf b(t)$$ so that $$\dot{\mathbf w}(t) = e^{-tA}\mathbf b(t).$$ Integrating, we get $$\mathbf w(t) = \int_0^t e^{-sA}\mathbf b(s)\,ds$$ and $$\mathbf x(t) = e^{tA}\mathbf w(t) = \int_0^t e^{(t-s)A}\mathbf b(s)\,ds.$$ This obviously satisfies $\mathbf x(0)=0$, so the general solution is $$\mathbf x(t) = e^{tA}\mathbf x_0+\int_0^t e^{(t-s)A}\mathbf b(s)\,ds.$$
When $\mathbf b$ is constant and $A$ invertible, the above integral is equal to $(\exp(tA)-I)A^{-1}\mathbf b$.