9.17 problem 1872

Internal problem ID [9451]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 8, system of first order odes
Problem number: 1872.
ODE order: 1.
ODE degree: 1.

Solve \begin {align*} x^{\prime }\relax (t )&=-9 \,{\mathrm e}^{2 t}+7 \,{\mathrm e}^{t}-5 x \relax (t )-y \relax (t )\\ y^{\prime }\relax (t )&=4 \,{\mathrm e}^{2 t}-3 \,{\mathrm e}^{t}+x \relax (t )-3 y \relax (t ) \end {align*}

Solution by Maple

Time used: 0.083 (sec). Leaf size: 65

dsolve({4*diff(x(t),t)+9*diff(y(t),t)+11*x(t)+31*y(t)=exp(t),3*diff(x(t),t)+7*diff(y(t),t)+8*x(t)+24*y(t)=exp(2*t)},{x(t), y(t)}, singsol=all)
 

\[ x \relax (t ) = {\mathrm e}^{-4 t} c_{2}+{\mathrm e}^{-4 t} t c_{1}+\frac {31 \,{\mathrm e}^{t}}{25}-\frac {49 \,{\mathrm e}^{2 t}}{36} \] \[ y \relax (t ) = \frac {19 \,{\mathrm e}^{2 t}}{36}-{\mathrm e}^{-4 t} c_{2}-{\mathrm e}^{-4 t} t c_{1}-{\mathrm e}^{-4 t} c_{1}-\frac {11 \,{\mathrm e}^{t}}{25} \]

Solution by Mathematica

Time used: 0.119 (sec). Leaf size: 76

DSolve[{4*x'[t]+9*y'[t]+11*x[t]+31*y[t]==Exp[t],3*x'[t]+7*y'[t]+8*x[t]+24*y[t]==Exp[2*t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]
 

\begin{align*} x(t)\to \frac {31 e^t}{25}-\frac {49 e^{2 t}}{36}-e^{-4 t} (c_1 (t-1)+c_2 t) \\ y(t)\to -\frac {11 e^t}{25}+\frac {19 e^{2 t}}{36}+e^{-4 t} ((c_1+c_2) t+c_2) \\ \end{align*}