Internal
problem
ID
[12171]
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
:
17
Date
solved
:
Monday, March 31, 2025 at 04:03:32 AM
CAS
classification
:
[_Riccati]
ode:=x*diff(y(x),x) = lambda*arccos(x)^n*y(x)^2+k*y(x)+lambda*b^2*x^(2*k)*arccos(x)^n; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]==\[Lambda]*ArcCos[x]^n*y[x]^2+k*y[x]+\[Lambda]*b^2*x^(2*k)*ArcCos[x]^n; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") b = symbols("b") k = symbols("k") lambda_ = symbols("lambda_") n = symbols("n") y = Function("y") ode = Eq(-b**2*lambda_*x**(2*k)*acos(x)**n - k*y(x) - lambda_*y(x)**2*acos(x)**n + x*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out