Internal
problem
ID
[2866]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
5,
page
21
Problem
number
:
26
Date
solved
:
Tuesday, September 30, 2025 at 05:55:32 AM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=exp(y(x))*(diff(y(x),x)+1) = 1; ic:=[y(0) = 1]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=Exp[y[x]]*(D[y[x],x]+1)==1; ic=y[0]==1; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((Derivative(y(x), x) + 1)*exp(y(x)) - 1,0) ics = {y(0): 1} dsolve(ode,func=y(x),ics=ics)