Internal
problem
ID
[10348]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
341
Date
solved
:
Wednesday, March 05, 2025 at 10:31:49 AM
CAS
classification
:
[_exact]
ode:=(x*exp(y(x))+exp(x))*diff(y(x),x)+exp(y(x))+y(x)*exp(x) = 0; dsolve(ode,y(x), singsol=all);
ode=E^y[x] + E^x*y[x] + (E^x + E^y[x]*x)*D[y[x],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