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