Internal
problem
ID
[5095]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
478
Date
solved
:
Tuesday, September 30, 2025 at 11:36:07 AM
CAS
classification
:
[[_Abel, `2nd type`, `class B`]]
ode:=(x*exp(-x)-2*y(x))*diff(y(x),x) = 2*x*exp(-2*x)-(exp(-x)+x*exp(-x)-2*y(x))*y(x); dsolve(ode,y(x), singsol=all);
ode=(x*Exp[-x]-2*y[x])*D[y[x],x]==2*x*Exp[-2*x]-(Exp[-x]+x*Exp[-x]-2*y[x])*y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x*exp(-2*x) + (x*exp(-x) - 2*y(x))*Derivative(y(x), x) + (x*exp(-x) - 2*y(x) + exp(-x))*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-x*y(x)*exp(x) + 2*x + 2*y(x)**2*exp(2*x) - y(x)*exp(x))*exp(-x)/(x - 2*y(x)*exp(x)) cannot be solved by the factorable group method