Basically this question comes from population modelling. Let $y$ be the population of Lions and let $x$ be the population of deer. By ignoring the effect of deer, we observe that $$dy/dt = k_2 y$$ [Exponential]. By ignoring the effect of lions on their own population, we obtain that $$dy/dt = k_1 x$$ Similarly, for deer, we observe that ignoring lions, $$dx/dt = k_3 x$$ and ignoring effect of current deer population, $$dx/dt = -k_4 y$$ Note the minus sign as the lions eat the deer. Thus, we can form coupled equations \begin{align} dy/dt &= k_1 x + k_2 y \tag{1} \\ dx/dt &= k_3 x - k_4 y \tag{2} \end{align}
I have been trying to solve these, but have been having considerable difficulty. If it makes the problem any easier, you can take $$k_i = 1 \quad \forall\ i$$ (Although this is inaccurate in this case, but it will hint at the correct form of solution.) I tried solving this version too, but I am not able to reach a result. Thanks in advance.
Hint
Starting with $$\frac{dy}{dt} = k_1 x + k_2 y \tag{1}$$ $$\frac{dx}{dt} = k_3 x - k_4 y \tag{2}$$ there is another possible way. Eliminating $x$ from the first equation gives $$x=\frac{1}{k_1} \frac{dy}{dt}-\frac{k_2}{k_1} y$$ then$$\frac{dx}{dt}= \frac{1}{k_1} \frac{d^2y}{dt^2}-\frac{k_2}{k_1}\frac{dy}{dt}=\frac{k_3}{k_1} \frac{dy}{dt}-\frac{k_2 k_3}{k_1} y-k_4 y$$ which gives a second order differential equation in $y$ $$\frac{d^2y}{dt^2}-(k_2+k_3)\frac{dy}{dt}+(k_1k_4+k_2k_3)y=0$$ Solve it for $y$ and compute from it according to $$x=\frac{1}{k_1} \frac{dy}{dt}-\frac{k_2}{k_1} y$$