2.204 problem 780

Internal problem ID [9115]

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

CAS Maple gives this as type [[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]

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

Solution by Maple

Time used: 0.485 (sec). Leaf size: 27

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

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

Solution by Mathematica

Time used: 0.463 (sec). Leaf size: 35

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

\[ y(x)\to \frac {e^{-c_1} x \left (-1+e^{2 c_1} (x+1)^2\right )}{2 (x+1)} \]