2.96 problem 672

Internal problem ID [9007]

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

CAS Maple gives this as type [`y=_G(x,y')`]

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

Solution by Maple

Time used: 0.016 (sec). Leaf size: 36

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

\[ \int _{\textit {\_b}}^{y \left (x \right )}\frac {\textit {\_a}^{2}}{\sqrt {-9 x^{4}+4 \textit {\_a}^{3}}}d \textit {\_a} -\frac {x^{3}}{3}-c_{1} = 0 \]

Solution by Mathematica

Time used: 12.374 (sec). Leaf size: 4512

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

Too large to display