Internal
problem
ID
[6339]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Review
problems.
page
79
Problem
number
:
1
Date
solved
:
Wednesday, March 05, 2025 at 12:36:06 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = exp(x+y(x))/(-1+y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Exp[x+y[x]]/(y[x]-1); 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))/(y(x) - 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)