Internal
problem
ID
[4294]
Book
:
Differential
equations
with
applications
and
historial
notes,
George
F.
Simmons.
Second
edition.
1971
Section
:
Chapter
2,
End
of
chapter,
page
61
Problem
number
:
25
Date
solved
:
Sunday, March 30, 2025 at 02:52:37 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=exp(x)*(1+x) = (x*exp(x)-y(x)*exp(y(x)))*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=Exp[x]*(1+x)==(x*Exp[x]-y[x]*Exp[y[x]])*D[y[x],x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x + 1)*exp(x) - (x*exp(x) - y(x)*exp(y(x)))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)