Internal
problem
ID
[14125]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
8.3
Systems
of
Linear
Differential
Equations
(Variation
of
Parameters).
Problems
page
514
Problem
number
:
Problem
6(b)
Date
solved
:
Tuesday, January 28, 2025 at 06:15:17 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.834 (sec). Leaf size: 70
dsolve([diff(x(t),t) = 2*x(t)+y(t)-z(t)+5*sin(t), diff(y(t),t) = y(t)+z(t)-10*cos(t), diff(z(t),t) = x(t)+z(t)+2, x(0) = 1, y(0) = 2, z(0) = 3], singsol=all)
✓ Solution by Mathematica
Time used: 1.098 (sec). Leaf size: 2170
DSolve[{D[x[t],t]==2*x[t]+y[t]-z[t]+5*Sin[t],D[y[t],t]==y[t]+z[t]-10*Cos[t],D[z[t],t]==x[t]+z[t]+2},{x[0]==1,y[0]==2,z[0]==3},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]
Too large to display