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