19.3.6 problem 14

Internal problem ID [3549]
Book : Differential equations and linear algebra, Stephen W. Goode, second edition, 2000
Section : 1.8, page 68
Problem number : 14
Date solved : Sunday, March 30, 2025 at 01:49:39 AM
CAS classification : [[_homogeneous, `class A`], _rational, _dAlembert]

\begin{align*} x \left (x^{2}-y^{2}\right )-x \left (x^{2}+y^{2}\right ) y^{\prime }&=0 \end{align*}

Maple. Time used: 0.004 (sec). Leaf size: 32
ode:=x*(x^2-y(x)^2)-x*(x^2+y(x)^2)*diff(y(x),x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = \operatorname {RootOf}\left (\int _{}^{\textit {\_Z}}\frac {\textit {\_a}^{2}+1}{\textit {\_a}^{3}+\textit {\_a}^{2}+\textit {\_a} -1}d \textit {\_a} +\ln \left (x \right )+c_1 \right ) x \]
Mathematica. Time used: 0.13 (sec). Leaf size: 71
ode=x*(x^2-y[x]^2)-x*(x^2+y[x]^2)*D[y[x],x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ \text {Solve}\left [\text {RootSum}\left [\text {$\#$1}^3+\text {$\#$1}^2+\text {$\#$1}-1\&,\frac {\text {$\#$1}^2 \log \left (\frac {y(x)}{x}-\text {$\#$1}\right )+\log \left (\frac {y(x)}{x}-\text {$\#$1}\right )}{3 \text {$\#$1}^2+2 \text {$\#$1}+1}\&\right ]=-\log (x)+c_1,y(x)\right ] \]
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x*(x**2 - y(x)**2) - x*(x**2 + y(x)**2)*Derivative(y(x), x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out