Internal
problem
ID
[13637]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
5,
Trivial
differential
equations.
Exercises
page
33
Problem
number
:
5.1
(v)
Date
solved
:
Monday, March 31, 2025 at 08:03:29 AM
CAS
classification
:
[_quadrature]
ode:=diff(T(t),t) = exp(-t)*sin(2*t); dsolve(ode,T(t), singsol=all);
ode=D[ T[t],t]==Exp[-t]*Sin[2*t]; ic={}; DSolve[{ode,ic},T[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") T = Function("T") ode = Eq(Derivative(T(t), t) - exp(-t)*sin(2*t),0) ics = {} dsolve(ode,func=T(t),ics=ics)