6.5 problem Problem 4(e)

Internal problem ID [11025]

Book: APPLIED DIFFERENTIAL EQUATIONS The Primary Course by Vladimir A. Dobrushkin. CRC Press 2015
Section: Chapter 6.4 Reduction to a single ODE. Problems page 415
Problem number: Problem 4(e).
ODE order: 1.
ODE degree: 1.

Solve \begin {align*} x^{\prime }\left (t \right )&=\frac {3 t}{4}-\frac {x \left (t \right )}{4}-\frac {y \left (t \right )}{4}\\ y^{\prime }\left (t \right )&=\frac {5 t}{4}-\frac {3 x \left (t \right )}{4}-\frac {3 y \left (t \right )}{4} \end {align*}

Solution by Maple

Time used: 0.016 (sec). Leaf size: 45

dsolve([5*diff(x(t),t)-3*diff(y(t),t)=x(t)+y(t),3*diff(x(t),t)-diff(y(t),t)=t],[x(t), y(t)], singsol=all)
 

\[ x \left (t \right ) = \frac {t}{2}-\frac {{\mathrm e}^{-t} c_{1}}{3}-2+\frac {t^{2}}{8}-c_{2} \] \[ y \left (t \right ) = -\frac {t^{2}}{8}-{\mathrm e}^{-t} c_{1} +\frac {3 t}{2}+c_{2} \]

Solution by Mathematica

Time used: 0.049 (sec). Leaf size: 72

DSolve[{5*x'[t]-3*y'[t]==x[t]+y[t],3*x'[t]-y'[t]==t},{x[t],y[t]},t,IncludeSingularSolutions -> True]
 

\begin{align*} x(t)\to \frac {1}{8} \left (t (t+4)+2 (c_1+c_2) e^{-t}-4+6 c_1-2 c_2\right ) \\ y(t)\to \frac {1}{8} \left (-(t-12) t+2 \left (3 (c_1+c_2) e^{-t}-6-3 c_1+c_2\right )\right ) \\ \end{align*}