I have this system of linear differential equations: \begin{align*} \frac{dA}{dt} & = k_1 - k_2AB - k_3A\\ \frac{dB}{dt} & = -k_2AB - k_4B\\ \frac{dC}{dt} & = k_2AB - k_5C\\ \frac{dD}{dt} & = k_6C \end{align*} Where $k_{i}$ are constants for $i\in\{1,2,3,4,5,6\}$.
Will an analytic solution to these equations exist? Is there an easy way to tell?
Thank you in advance
PARTIAL SOLUTION (case $k_3=k_4=k_5$)
Upon eliminating the $k_2AB$ terms, the system in $A,B,C$ becomes
\begin{align*} \dot{A}-\dot{B}&=k_1-k_3(A-B)\\ \dot{B}+\dot{C}&=-k_3(B+C)\\ \dot{A}+\dot{C}&=k_1-k_3(A+C) \end{align*}
which may be integrated directly to yield
\begin{align*} A-B&=\frac{k_1-\bigg(k_1-k_3(A_0-B_0)\bigg)\exp(-k_3t)}{k_3}&=f_1\\ B+C&=(B_0+C_0)\exp(-k_3t)&=f_2\\ A+C&=\frac{k_1-\bigg(k_1-k_3(A_0+C_0)\bigg)\exp(-k_3t)}{k_3}&=f_3 \end{align*}
where $A_0=A(0)$ and so on. It follows that $B_0+C_0=0$ and hence $B(t)+C(t)=0$.
In matrix form,
$\begin{pmatrix} A\\ B\\ C\\ \end{pmatrix}= \begin{pmatrix} 1&-1&0\\ 0&1&1\\ 1&0&1\\ \end{pmatrix}^{-1} \begin{pmatrix} f_1\\ 0\\ f_3\\ \end{pmatrix}$
and it is clear that there exists no unique solution because the $3\times 3$ matrix is singular.