1.7 problem 1(g)

Internal problem ID [2499]

Book: Theory and solutions of Ordinary Differential equations, Donald Greenspan, 1960
Section: Exercises, page 14
Problem number: 1(g).
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_linear]

\[ \boxed {y^{\prime }-\frac {y-2 x}{x}=0} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 12

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

\[ y \left (x \right ) = \left (-2 \ln \left (x \right )+c_{1} \right ) x \]

Solution by Mathematica

Time used: 0.024 (sec). Leaf size: 14

DSolve[y'[x]==(y[x]-2*x)/x,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to x (-2 \log (x)+c_1) \\ \end{align*}