I need help solving the following system of ODE. The problem is not so much getting the final solution, but getting a clear view of the process to getting there.
The system is the following:
$$\begin{cases}
\dfrac{dA(t)}{dt} = -aA(t) \\
\dfrac{dB(t)}{dt} = aA(t) - bB(t) \\
\dfrac{dC(t)}{dt} = bB(t)\\
\end{cases} $$
I know that $A = A(0)e^{-at}$, but I cannot figure out the expressions for B and C.
Thanks in advance!
This is a linear differential system of form $\dot{x}(t) = M x$, for below matrix $M$. The (matricial) solution for this ODE is $x(t, t_0, x_0) = \Phi(t, t_0) \, x_0$, such that matrix $\Phi(t, t_0)$ is called transition matrix. The transition matrix in this case is $\exp(M \, (t-t_0))$.
\begin{equation} M = \begin{bmatrix} -a&0&0 \\ a&-b&0 \\ 0&b&0 \\ \end{bmatrix} \end{equation}
There is no closed form based on exponential sum like you expect as an answer in general case. For this particular case, I performed the following Wolfram Alpha query for matrix $e^M$, let as call it N:
Therefore, the answer $x(t, t_0, x_0)$ you look for is given by $N^{t-t_0} \, x_0$