9.21 problem 1876

Internal problem ID [10199]

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

Solve \begin {align*} x^{\prime }\left (t \right )&=x \left (t \right ) \cos \left (t \right )\\ y^{\prime }\left (t \right )&=x \left (t \right ) {\mathrm e}^{-\sin \left (t \right )} \end {align*}

Solution by Maple

Time used: 0.141 (sec). Leaf size: 18

dsolve([diff(x(t),t)=x(t)*cos(t),diff(y(t),t)=x(t)*exp(-sin(t))],singsol=all)
 

\begin{align*} x \left (t \right ) &= c_{2} {\mathrm e}^{\sin \left (t \right )} \\ y \left (t \right ) &= c_{2} t +c_{1} \\ \end{align*}

Solution by Mathematica

Time used: 0.005 (sec). Leaf size: 22

DSolve[{x'[t]==x[t]*Cos[t],y'[t]==x[t]*Exp[-Sin[t]]},{x[t],y[t]},t,IncludeSingularSolutions -> True]
 

\begin{align*} x(t)\to c_1 e^{\sin (t)} \\ y(t)\to c_1 t+c_2 \\ \end{align*}