60.9.17 problem 1872

Internal problem ID [11871]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 8, system of first order odes
Problem number : 1872
Date solved : Monday, January 27, 2025 at 11:44:04 PM
CAS classification : system_of_ODEs

\begin{align*} 4 \frac {d}{d t}x \left (t \right )+9 \frac {d}{d t}y \left (t \right )+11 x \left (t \right )+31 y \left (t \right )&={\mathrm e}^{t}\\ 3 \frac {d}{d t}x \left (t \right )+7 \frac {d}{d t}y \left (t \right )+8 x \left (t \right )+24 y \left (t \right )&={\mathrm e}^{2 t} \end{align*}

Solution by Maple

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

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)],singsol=all)
 
\begin{align*} x \left (t \right ) &= c_{2} {\mathrm e}^{-4 t}+{\mathrm e}^{-4 t} t c_{1} +\frac {31 \,{\mathrm e}^{t}}{25}-\frac {49 \,{\mathrm e}^{2 t}}{36} \\ y \left (t \right ) &= \frac {19 \,{\mathrm e}^{2 t}}{36}-c_{2} {\mathrm e}^{-4 t}-{\mathrm e}^{-4 t} t c_{1} -\frac {11 \,{\mathrm e}^{t}}{25}-{\mathrm e}^{-4 t} c_{1} \\ \end{align*}

Solution by Mathematica

Time used: 0.230 (sec). Leaf size: 184

DSolve[{4*D[x[t],t]+9*D[y[t],t]+11*x[t]+31*y[t]==Exp[t],3*D[x[t],t]+7*D[y[t],t]+8*x[t]+24*y[t]==Exp[2*t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]
 
\begin{align*} x(t)\to e^{-4 t} \left (-(t-1) \int _1^te^{5 K[1]} \left (4 K[1]-e^{K[1]} (5 K[1]+9)+7\right )dK[1]-t \int _1^te^{5 K[2]} \left (-4 K[2]+e^{K[2]} (5 K[2]+4)-3\right )dK[2]+c_1 (-t)-c_2 t+c_1\right ) \\ y(t)\to e^{-4 t} \left (t \int _1^te^{5 K[1]} \left (4 K[1]-e^{K[1]} (5 K[1]+9)+7\right )dK[1]+(t+1) \int _1^te^{5 K[2]} \left (-4 K[2]+e^{K[2]} (5 K[2]+4)-3\right )dK[2]+c_1 t+c_2 t+c_2\right ) \\ \end{align*}