61.14.6 problem 6

Internal problem ID [12160]
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-1. Equations containing arcsine.
Problem number : 6
Date solved : Wednesday, March 05, 2025 at 05:01:45 PM
CAS classification : [_Riccati]

\begin{align*} y^{\prime }&=\lambda \arcsin \left (x \right )^{n} y^{2}+\beta m \,x^{m -1}-\lambda \,\beta ^{2} x^{2 m} \arcsin \left (x \right )^{n} \end{align*}

Maple
ode:=diff(y(x),x) = lambda*arcsin(x)^n*y(x)^2+beta*m*x^(m-1)-lambda*beta^2*x^(2*m)*arcsin(x)^n; 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=D[y[x],x]==\[Lambda]*ArcSin[x]^n*y[x]^2+\[Beta]*m*x^(m-1)-\[Lambda]*\[Beta]^2*x^(2*m)*ArcSin[x]^n; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
BETA = symbols("BETA") 
cg = symbols("cg") 
m = symbols("m") 
n = symbols("n") 
y = Function("y") 
ode = Eq(BETA**2*cg*x**(2*m)*asin(x)**n - BETA*m*x**(m - 1) - cg*y(x)**2*asin(x)**n + Derivative(y(x), x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out