1.335 problem 336

Internal problem ID [8672]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 1, linear first order
Problem number: 336.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_exact]

\[ \boxed {\left (\sqrt {y^{2}+1}+a x \right ) y^{\prime }+a y=-\sqrt {x^{2}+1}} \]

Solution by Maple

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

dsolve(((y(x)^2+1)^(1/2)+a*x)*diff(y(x),x)+(x^2+1)^(1/2)+a*y(x) = 0,y(x), singsol=all)
 

\[ \frac {x \sqrt {x^{2}+1}}{2}+\frac {\operatorname {arcsinh}\left (x \right )}{2}+a x y \left (x \right )+\frac {y \left (x \right ) \sqrt {y \left (x \right )^{2}+1}}{2}+\frac {\operatorname {arcsinh}\left (y \left (x \right )\right )}{2}+c_{1} = 0 \]

Solution by Mathematica

Time used: 0.443 (sec). Leaf size: 80

DSolve[Sqrt[1 + x^2] + a*y[x] + (a*x + Sqrt[1 + y[x]^2])*y'[x]==0,y[x],x,IncludeSingularSolutions -> True]
 

\[ \text {Solve}\left [a x y(x)+\frac {1}{2} \sqrt {x^2+1} x-\frac {1}{2} \log \left (\sqrt {x^2+1}-x\right )+\frac {1}{2} y(x) \sqrt {y(x)^2+1}-\frac {1}{2} \log \left (\sqrt {y(x)^2+1}-y(x)\right )=c_1,y(x)\right ] \]