1.383 problem 384

Internal problem ID [7963]

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

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

\[ \boxed {{y^{\prime }}^{2}+\left (x a +b \right ) y^{\prime }-y a +c=0} \]

Solution by Maple

Time used: 0.032 (sec). Leaf size: 50

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

\begin{align*} y \left (x \right ) = \frac {-a^{2} x^{2}-2 a b x -b^{2}+4 c}{4 a} \\ y \left (x \right ) = x c_{1} +\frac {c_{1} b +c_{1}^{2}+c}{a} \\ \end{align*}

Solution by Mathematica

Time used: 0.011 (sec). Leaf size: 43

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

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