1.450 problem 451

Internal problem ID [8031]

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

CAS Maple gives this as type [[_1st_order, _with_linear_symmetries], _rational, _Clairaut]

Solve \begin {gather*} \boxed {\left (x^{2}+a \right ) \left (y^{\prime }\right )^{2}-2 x y y^{\prime }+y^{2}+b=0} \end {gather*}

Solution by Maple

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

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

\begin{align*} y \relax (x ) = x c_{1}-\sqrt {-a c_{1}^{2}-b} \\ y \relax (x ) = x c_{1}+\sqrt {-a c_{1}^{2}-b} \\ y \relax (x ) = c_{1} \sqrt {x^{2}+a} \\ \end{align*}

Solution by Mathematica

Time used: 0.326 (sec). Leaf size: 96

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

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