60.2.184 problem 760

Internal problem ID [10758]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 1, Additional non-linear first order
Problem number : 760
Date solved : Sunday, March 30, 2025 at 06:35:14 PM
CAS classification : [_rational]

\begin{align*} y^{\prime }&=\frac {\left (x y^{2}+1\right )^{3}}{x^{4} \left (x y^{2}+1+x \right ) y} \end{align*}

Maple. Time used: 0.560 (sec). Leaf size: 174
ode:=diff(y(x),x) = (x*y(x)^2+1)^3/x^4/(x*y(x)^2+1+x)/y(x); 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= -\frac {\sqrt {2}\, \sqrt {-x \left (2+\left (1+i\right ) x \right )}}{2 x} \\ y &= \frac {\sqrt {2}\, \sqrt {-x \left (2+\left (1+i\right ) x \right )}}{2 x} \\ y &= -\frac {\sqrt {2}\, \sqrt {\left (-2+\left (-1+i\right ) x \right ) x}}{2 x} \\ y &= \frac {\sqrt {2}\, \sqrt {\left (-2+\left (-1+i\right ) x \right ) x}}{2 x} \\ \frac {\ln \left (x y^{2}-x +1\right )}{5}+\frac {1}{2 x}-\frac {\ln \left (2 y^{4} x^{2}+\left (2 x^{2}+4 x \right ) y^{2}+x^{2}+2 x +2\right )}{10}+\frac {\arctan \left (2 y^{4} x +\left (2 x +2\right ) y^{2}+x +1\right )}{10}-\frac {\arctan \left (2 y^{2}+1\right )}{10}+c_1 &= 0 \\ \end{align*}
Mathematica. Time used: 0.768 (sec). Leaf size: 426
ode=D[y[x],x] == (1 + x*y[x]^2)^3/(x^4*y[x]*(1 + x + x*y[x]^2)); 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ \text {Solve}\left [\int _1^{y(x)}\left (-\frac {4 x K[2]}{5 \left (x K[2]^2-x+1\right )}-\int _1^x\left (-\frac {4 K[2]}{5 \left (K[1] K[2]^2-K[1]+1\right )}+\frac {4 K[1] \left (K[2]^2-1\right ) K[2]}{5 \left (K[1] K[2]^2-K[1]+1\right )^2}+\frac {16 K[1] K[2]^3+8 K[1] K[2]+8 K[2]}{5 \left (2 K[1]^2 K[2]^4+2 K[1]^2 K[2]^2+4 K[1] K[2]^2+K[1]^2+2 K[1]+2\right )}-\frac {\left (8 K[1]^2 K[2]^3+4 K[1]^2 K[2]+8 K[1] K[2]\right ) \left (4 K[1] K[2]^4+4 K[1] K[2]^2+4 K[2]^2+2 K[1]+1\right )}{5 \left (2 K[1]^2 K[2]^4+2 K[1]^2 K[2]^2+4 K[1] K[2]^2+K[1]^2+2 K[1]+2\right )^2}\right )dK[1]+\frac {2 \left (4 x^2 K[2]^3+3 x^2 K[2]+4 x K[2]\right )}{5 \left (2 x^2 K[2]^4+2 x^2 K[2]^2+4 x K[2]^2+x^2+2 x+2\right )}\right )dK[2]+\int _1^x\left (-\frac {2 \left (y(x)^2-1\right )}{5 \left (K[1] y(x)^2-K[1]+1\right )}+\frac {4 K[1] y(x)^4+4 K[1] y(x)^2+4 y(x)^2+2 K[1]+1}{5 \left (2 K[1]^2 y(x)^4+2 K[1]^2 y(x)^2+4 K[1] y(x)^2+K[1]^2+2 K[1]+2\right )}+\frac {1}{K[1]^2}\right )dK[1]=c_1,y(x)\right ] \]
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(Derivative(y(x), x) - (x*y(x)**2 + 1)**3/(x**4*(x*y(x)**2 + x + 1)*y(x)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out