2.89 problem 665

Internal problem ID [8245]

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

CAS Maple gives this as type [[_1st_order, _with_symmetry_[F(x),G(x)]]]

Solve \begin {gather*} \boxed {y^{\prime }+\frac {\left (x^{4} \sqrt {a}+x^{3} \sqrt {a}-2 \sqrt {a \,x^{4}+8 y}\right ) \sqrt {a}}{2 x +2}=0} \end {gather*}

Solution by Maple

Time used: 0.125 (sec). Leaf size: 30

dsolve(diff(y(x),x) = -1/2*(a^(1/2)*x^4+a^(1/2)*x^3-2*(a*x^4+8*y(x))^(1/2))*a^(1/2)/(x+1),y(x), singsol=all)
 

\[ 4 \sqrt {a}\, \ln \left (x +1\right )-\sqrt {a \,x^{4}+8 y \relax (x )}-c_{1} = 0 \]

Solution by Mathematica

Time used: 0.648 (sec). Leaf size: 38

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

\begin{align*} y(x)\to -\frac {1}{8} a \left (x^2-4 \log (x+1)+4 c_1\right ) \left (x^2+4 \log (x+1)-4 c_1\right ) \\ \end{align*}