Internal
problem
ID
[2492]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.4
separable
equations.
Excercises
page
24
Problem
number
:
4
Date
solved
:
Sunday, March 30, 2025 at 12:03:19 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[t+y[t]+3]; 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)