14.8 problem 389

Internal problem ID [3135]

Book: Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section: Various 14
Problem number: 389.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_linear]

Solve \begin {gather*} \boxed {\sqrt {x^{2}+1}\, y^{\prime }-2 x +y=0} \end {gather*}

Solution by Maple

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

dsolve(diff(y(x),x)*sqrt(x^2+1) = 2*x-y(x),y(x), singsol=all)
 

\[ y \relax (x ) = \frac {x^{2}+x \sqrt {x^{2}+1}-\arcsinh \relax (x )+c_{1}}{x +\sqrt {x^{2}+1}} \]

Solution by Mathematica

Time used: 0.065 (sec). Leaf size: 39

DSolve[y'[x] Sqrt[1+x^2]==2 x -y[x],y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to \left (\sqrt {x^2+1}-x\right ) \left (x \left (\sqrt {x^2+1}+x\right )-\sinh ^{-1}(x)+c_1\right ) \\ \end{align*}