61.22.73 problem 73

Internal problem ID [12319]
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.1-2. Solvable equations and their solutions
Problem number : 73
Date solved : Monday, March 31, 2025 at 05:09:42 AM
CAS classification : [[_Abel, `2nd type`, `class A`]]

\begin{align*} y y^{\prime }-y&=a^{2} \lambda \,{\mathrm e}^{2 \lambda x}-a \left (b \lambda +1\right ) {\mathrm e}^{\lambda x}+b \end{align*}

Maple
ode:=y(x)*diff(y(x),x)-y(x) = a^2*lambda*exp(2*lambda*x)-a*(b*lambda+1)*exp(lambda*x)+b; 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=y[x]*D[y[x],x]-y[x]==a^2*\[Lambda]*Exp[2*\[Lambda]*x]-a*(b*\[Lambda]+1)*Exp[\[Lambda]*x]+b; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
a = symbols("a") 
b = symbols("b") 
lambda_ = symbols("lambda_") 
y = Function("y") 
ode = Eq(-a**2*lambda_*exp(2*lambda_*x) + a*(b*lambda_ + 1)*exp(lambda_*x) - b + y(x)*Derivative(y(x), x) - y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out