Internal
problem
ID
[13466]
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
:
13
Date
solved
:
Wednesday, October 01, 2025 at 02:21:33 PM
CAS
classification
:
[_Riccati]
ode:=diff(y(x),x) = lambda*arccos(x)^n*y(x)^2+a*y(x)+a*b-b^2*lambda*arccos(x)^n; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==\[Lambda]*ArcCos[x]^n*y[x]^2+a*y[x]+a*b-b^2*\[Lambda]*ArcCos[x]^n; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") lambda_ = symbols("lambda_") n = symbols("n") y = Function("y") ode = Eq(-a*b - a*y(x) + b**2*lambda_*acos(x)**n - lambda_*y(x)**2*acos(x)**n + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)