9.45 problem 1900

Internal problem ID [10223]

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

Solve \begin {align*} x^{\prime }\left (t \right )&=4 x \left (t \right )\\ y^{\prime }\left (t \right )&=x \left (t \right )-2 y \left (t \right )\\ z^{\prime }\left (t \right )&=x \left (t \right )-4 y \left (t \right )+z \left (t \right ) \end {align*}

Solution by Maple

Time used: 0.031 (sec). Leaf size: 50

dsolve([diff(x(t),t)=4*x(t),diff(y(t),t)=x(t)-2*y(t),diff(z(t),t)=x(t)-4*y(t)+z(t)],singsol=all)
 

\begin{align*} x \left (t \right ) &= c_{3} {\mathrm e}^{4 t} \\ y \left (t \right ) &= \frac {c_{3} {\mathrm e}^{4 t}}{6}+c_{2} {\mathrm e}^{-2 t} \\ z \left (t \right ) &= \frac {c_{3} {\mathrm e}^{4 t}}{9}+c_{1} {\mathrm e}^{t}+\frac {4 c_{2} {\mathrm e}^{-2 t}}{3} \\ \end{align*}

Solution by Mathematica

Time used: 0.007 (sec). Leaf size: 88

DSolve[{x'[t]==4*x[t],y'[t]==x[t]-2*y[t],z'[t]==x[t]-4*y[t]+z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]
 

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