Internal
problem
ID
[7734]
Book
:
An
introduction
to
Ordinary
Differential
Equations.
Earl
A.
Coddington.
Dover.
NY
1961
Section
:
Chapter
5.
Existence
and
uniqueness
of
solutions
to
first
order
equations.
Page
190
Problem
number
:
1(d)
Date
solved
:
Sunday, March 30, 2025 at 12:20:23 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = exp(x-y(x))/(exp(x)+1); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Exp[x-y[x]]/(1+Exp[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - exp(x - y(x))/(exp(x) + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)