Internal
problem
ID
[3439]
Book
:
Ordinary
Differential
Equations,
Robert
H.
Martin,
1983
Section
:
Problem
1.2-1,
page
12
Problem
number
:
1.2-1
(b)
Date
solved
:
Tuesday, March 04, 2025 at 04:39:11 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(t),t) = -y(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==-y[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)