Internal
problem
ID
[7393]
Book
:
Ordinary
differential
equations
and
calculus
of
variations.
Makarets
and
Reshetnyak.
Wold
Scientific.
Singapore.
1995
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.1
Separable
equations
problems.
page
7
Problem
number
:
12
Date
solved
:
Sunday, March 30, 2025 at 11:56:36 AM
CAS
classification
:
[_quadrature]
ode:=(1+diff(z(t),t))*exp(-z(t)) = 1; dsolve(ode,z(t), singsol=all);
ode=(1+D[z[t],t])*Exp[-z[t]]==1; ic={}; DSolve[{ode,ic},z[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") z = Function("z") ode = Eq((Derivative(z(t), t) + 1)*exp(-z(t)) - 1,0) ics = {} dsolve(ode,func=z(t),ics=ics)