Internal
problem
ID
[3517]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode,
second
edition,
2000
Section
:
1.4,
page
36
Problem
number
:
3
Date
solved
:
Tuesday, March 04, 2025 at 04:44:00 PM
CAS
classification
:
[_separable]
ode:=exp(x+y(x))*diff(y(x),x)-1 = 0; dsolve(ode,y(x), singsol=all);
ode=Exp[x+y[x]]*D[y[x],x]-1==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(exp(x + y(x))*Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)