Internal
problem
ID
[5329]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
26
Problem
number
:
744
Date
solved
:
Sunday, March 30, 2025 at 07:59:34 AM
CAS
classification
:
[_exact]
ode:=(exp(x)+x*exp(y(x)))*diff(y(x),x)+y(x)*exp(x)+exp(y(x)) = 0; dsolve(ode,y(x), singsol=all);
ode=(Exp[x]+x*Exp[y[x]])*D[y[x],x]+y[x]*Exp[x]+Exp[y[x]]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x*exp(y(x)) + exp(x))*Derivative(y(x), x) + y(x)*exp(x) + exp(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-y(x)*exp(x) - exp(y(x)))/(x*exp(y(x)) + exp(x)) cannot be solved by the factorable group method