61.15.9 problem 18

Internal problem ID [12172]
Book : Handbook of exact solutions for ordinary differential equations. By Polyanin and Zaitsev. Second edition
Section : Chapter 1, section 1.2. Riccati Equation. subsection 1.2.7-2. Equations containing arccosine.
Problem number : 18
Date solved : Monday, March 31, 2025 at 04:09:57 AM
CAS classification : [_Riccati]

\begin{align*} x y^{\prime }&=\left (a \,x^{2 m} y^{2}+b \,x^{n} y+c \right ) \arccos \left (x \right )^{m}-n y \end{align*}

Maple
ode:=x*diff(y(x),x) = (a*x^(2*m)*y(x)^2+b*x^n*y(x)+c)*arccos(x)^m-n*y(x); 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=x*D[y[x],x]==(a*x^(2*m)*y[x]^2+b*x^n*y[x]+c)*ArcCos[x]^m-n*y[x]; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
a = symbols("a") 
b = symbols("b") 
c = symbols("c") 
m = symbols("m") 
n = symbols("n") 
y = Function("y") 
ode = Eq(n*y(x) + x*Derivative(y(x), x) - (a*x**(2*m)*y(x)**2 + b*x**n*y(x) + c)*acos(x)**m,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out