Internal
problem
ID
[2321]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.4.
Page
24
Problem
number
:
4
Date
solved
:
Tuesday, September 30, 2025 at 05:26:40 AM
CAS
classification
:
[_separable]
ode:=diff(y(t),t) = exp(3+t+y(t)); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t] == Exp[3+t+y[t]]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-exp(t + y(t) + 3) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)