Internal
problem
ID
[14126]
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(c)
Date
solved
:
Tuesday, January 28, 2025 at 06:15:19 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 3.328 (sec). Leaf size: 131
dsolve([diff(x(t),t) = -3*x(t)+3*y(t)+z(t)+5*sin(2*t), diff(y(t),t) = x(t)-5*y(t)-3*z(t)+5*cos(2*t), diff(z(t),t) = -3*x(t)+7*y(t)+3*z(t)+23*exp(t), x(0) = 1, y(0) = 2, z(0) = 3], singsol=all)
✓ Solution by Mathematica
Time used: 7.771 (sec). Leaf size: 3703
DSolve[{D[x[t],t]==-3*x[t]+3*y[t]+z[t]+5*Sin[3*t],D[y[t],t]==x[t]-5*y[t]-3*z[t]+5*Cos[2*t],D[z[t],t]==-3*x[t]+7*y[t]+3*z[t]+23*Exp[t]},{x[0]==1,y[0]==2,z[0]==3},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]
Too large to display