For a birth and death process with birth rates, $\lambda_i$ and death rates $\mu_i$ $(i=0,1,2...)$ respectively. Show that the transition probabilities, $P_{i,j}(t)$ satisfy the following differential equations
$P'_{0,j}(t) = -\lambda_{0} P_{0,j}(t) +\lambda_{0} P_{1,j}(t)$
$P'_{i,j}(t) = \mu_{i} P_{i-1,j}(t)-(\lambda_{i} +\mu_{i}) P_{i,j}(t) +\lambda_{i}P_{i+1,j}(t)$ for $i \geq 1$
Here is what I have so far:
First of all, the subscripts are different than a normal birth and death process. So I think the transition matrix is the following
$P_{i,j}(t) = $\begin{matrix} -\lambda_{0} & \lambda_{0} & 0 & 0 & ... \\ \mu_{0} & -(\lambda_{1}+\mu_{0}) & \lambda_{1} & 0 &...\\ 0 & \mu_{1} & -(\lambda_{2} + \mu_{1}) & \lambda_{2} &0 &...\\ 0 & 0 & \mu_{2} & -(\lambda_{3} + \mu_{2} ) & \lambda_{3} &...\\ \end{matrix}
I know from the Chapman-Kolomogrov Equations, I can somehow manipulate them in order to get the differential equations but I am not exactly sure how to do that.
Thank you for all of your inputs. Much help is appreciated.