Internal
problem
ID
[17466]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
3.
Systems
of
two
first
order
equations.
Section
3.2
(Two
first
order
linear
differential
equations).
Problems
at
page
142
Problem
number
:
11
Date
solved
:
Tuesday, January 28, 2025 at 10:39:07 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.071 (sec). Leaf size: 19
dsolve([diff(x(t),t) = y(t), diff(y(t),t) = -x(t)+2*sin(t), x(0) = 0, y(0) = 0], singsol=all)
✓ Solution by Mathematica
Time used: 0.009 (sec). Leaf size: 87
DSolve[{D[x[t],t]==y[t],D[y[t],t]==-x[t]+2*Sin[t]},{x[0]==0,y[0]==0},{x[t],y[t]},t,IncludeSingularSolutions -> True]