1.501 problem 503

Internal problem ID [8838]

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

CAS Maple gives this as type [_rational]

\[ \boxed {\left (\operatorname {b2} y+\operatorname {a2} x +\operatorname {c2} \right )^{2} {y^{\prime }}^{2}+\left (\operatorname {a1} x +\operatorname {b1} y+\operatorname {c1} \right ) y^{\prime }+\operatorname {b0} y=-\operatorname {c0} -\operatorname {a0}} \]

Solution by Maple

dsolve((b2*y(x)+a2*x+c2)^2*diff(y(x),x)^2+(a1*x+b1*y(x)+c1)*diff(y(x),x)+b0*y(x)+a0+c0=0,y(x), singsol=all)
 

\[ \text {No solution found} \]

Solution by Mathematica

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

DSolve[a0 + c0 + b0*y[x] + (c1 + a1*x + b1*y[x])*y'[x] + (c2 + a2*x + b2*y[x])^2*y'[x]^2==0,y[x],x,IncludeSingularSolutions -> True]
 

Timed out