1.96 problem 119

Internal problem ID [3241]

Book: Differential equations for engineers by Wei-Chau XIE, Cambridge Press 2010
Section: Chapter 2. First-Order and Simple Higher-Order Differential Equations. Page 78
Problem number: 119.
ODE order: 1.
ODE degree: 0.

CAS Maple gives this as type [[_homogeneous, `class A`], _dAlembert]

\[ \boxed {y^{\prime }={\mathrm e}^{\frac {x y^{\prime }}{y}}} \]

Solution by Maple

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

dsolve(diff(y(x),x)=exp(x*diff(y(x),x)/y(x)),y(x), singsol=all)
 

\[ y \left (x \right ) = -\frac {{\mathrm e}^{-c_{1} x}}{c_{1}} \]

Solution by Mathematica

Time used: 0.078 (sec). Leaf size: 21

DSolve[y'[x]==Exp[x*y'[x]/y[x]],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to -e^{c_1-e^{-c_1} x} \]