Internal
problem
ID
[13420]
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-2.
Equations
with
cosine.
Problem
number
:
26
Date
solved
:
Wednesday, October 01, 2025 at 11:30:01 AM
CAS
classification
:
[_Riccati]
ode:=(a*cos(lambda*x)+b)*(diff(y(x),x)-y(x)^2)-a*lambda^2*cos(lambda*x) = 0; dsolve(ode,y(x), singsol=all);
ode=(a*Cos[\[Lambda]*x]+b)*(D[y[x],x]-y[x]^2)-a*\[Lambda]^2*Cos[\[Lambda]*x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") lambda_ = symbols("lambda_") y = Function("y") ode = Eq(-a*lambda_**2*cos(lambda_*x) + (a*cos(lambda_*x) + b)*(-y(x)**2 + Derivative(y(x), x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (a*lambda_**2*cos(lambda_*x) + a*y(x)**2*cos(lambda_*x) + b*y(x)**2)/(a*cos(lambda_*x) + b) cannot be solved by the factorable group method