Internal
problem
ID
[12175]
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-3.
Equations
containing
arctangent.
Problem
number
:
21
Date
solved
:
Wednesday, March 05, 2025 at 05:14:35 PM
CAS
classification
:
[_Riccati]
ode:=diff(y(x),x) = -(k+1)*x^k*y(x)^2+lambda*arctan(x)^n*(x^(k+1)*y(x)-1); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==-(k+1)*x^k*y[x]^2+\[Lambda]*ArcTan[x]^n*(x^(k+1)*y[x]-1); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") k = symbols("k") cg = symbols("cg") n = symbols("n") y = Function("y") ode = Eq(-cg*(x**(k + 1)*y(x) - 1)*atan(x)**n + x**k*(k + 1)*y(x)**2 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out