Internal
problem
ID
[4095]
Book
:
Theory
and
solutions
of
Ordinary
Differential
equations,
Donald
Greenspan,
1960
Section
:
Chapter
2.
First
order
equations.
Exercises
at
page
14
Problem
number
:
1(e)
Date
solved
:
Tuesday, September 30, 2025 at 07:02:37 AM
CAS
classification
:
[_separable]
ode:=exp(2*y(x))+(1+x)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Exp[2*y[x]]+(1+x)*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x + 1)*Derivative(y(x), x) + exp(2*y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)