Internal
problem
ID
[13427]
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.6-3.
Equations
with
tangent.
Problem
number
:
33
Date
solved
:
Wednesday, October 01, 2025 at 11:43:49 AM
CAS
classification
:
[_Riccati]
ode:=diff(y(x),x) = -(1+k)*x^k*y(x)^2+a*x^(1+k)*tan(x)^m*y(x)-a*tan(x)^m; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==-(k+1)*x^k*y[x]^2+a*x^(k+1)*Tan[x]^m*y[x]-a*Tan[x]^m; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") k = symbols("k") m = symbols("m") y = Function("y") ode = Eq(-a*x**(k + 1)*y(x)*tan(x)**m + a*tan(x)**m + x**k*(k + 1)*y(x)**2 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out