Internal
problem
ID
[12403]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
section
1.3.
Abel
Equations
of
the
Second
Kind.
subsection
1.3.3-2.
Problem
number
:
69
Date
solved
:
Monday, March 31, 2025 at 05:30:15 AM
CAS
classification
:
[[_Abel, `2nd type`, `class A`]]
ode:=y(x)*diff(y(x),x) = (exp(lambda*x)*a+b)*y(x)+c*(exp(2*lambda*x)*a^2+a*b*(lambda*x+1)*exp(lambda*x)+b^2*lambda*x); dsolve(ode,y(x), singsol=all);
ode=y[x]*D[y[x],x]==(a*Exp[\[Lambda]*x]+b)*y[x]+c*(a^2*Exp[2*\[Lambda]*x]+a*b*(\[Lambda]*x+1)*Exp[\[Lambda]*x]+b^2*\[Lambda]*x); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") lambda_ = symbols("lambda_") y = Function("y") ode = Eq(-c*(a**2*exp(2*lambda_*x) + a*b*(lambda_*x + 1)*exp(lambda_*x) + b**2*lambda_*x) - (a*exp(lambda_*x) + b)*y(x) + y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(a**2*c*exp(2*lambda_*x) + a*b*c*lambda_*x*exp(lambda_*x) + a*b*c*exp(lambda_*x) + b**2*c*lambda_*x + (a*exp(lambda_*x) + b)*y(x))/y(x) + Derivative(y(x), x) cannot be solved by the factorable group method