23.1.528 problem 518

Internal problem ID [5135]
Book : Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section : Part II. Chapter 1. THE DIFFERENTIAL EQUATION IS OF FIRST ORDER AND OF FIRST DEGREE, page 223
Problem number : 518
Date solved : Tuesday, September 30, 2025 at 11:43:57 AM
CAS classification : [[_homogeneous, `class A`], _dAlembert]

\begin{align*} x y y^{\prime }+x^{2} \operatorname {arccot}\left (\frac {y}{x}\right )-y^{2}&=0 \end{align*}
Maple. Time used: 0.003 (sec). Leaf size: 21
ode:=x*y(x)*diff(y(x),x)+x^2*arccot(y(x)/x)-y(x)^2 = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = \operatorname {RootOf}\left (\int _{}^{\textit {\_Z}}\frac {\textit {\_a}}{\operatorname {arccot}\left (\textit {\_a} \right )}d \textit {\_a} +\ln \left (x \right )+c_1 \right ) x \]
Mathematica. Time used: 0.323 (sec). Leaf size: 31
ode=x*y[x]*D[y[x],x]+x^2*ArcCot[y[x]/x]-y[x]^2==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ \text {Solve}\left [\int _1^{\frac {y(x)}{x}}\frac {K[1]}{\cot ^{-1}(K[1])}dK[1]=-\log (x)+c_1,y(x)\right ] \]
Sympy. Time used: 0.654 (sec). Leaf size: 3
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x**2*acot(y(x)/x) + x*y(x)*Derivative(y(x), x) - y(x)**2,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = 0 \]