Internal
problem
ID
[4556]
Book
:
Differential
equations
for
engineers
by
Wei-Chau
XIE,
Cambridge
Press
2010
Section
:
Chapter
7.
Systems
of
linear
differential
equations.
Problems
at
page
351
Problem
number
:
7.24
Date
solved
:
Tuesday, January 28, 2025 at 02:39:21 PM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.059 (sec). Leaf size: 57
dsolve([diff(diff(x(t),t),t)+diff(x(t),t)+diff(y(t),t)-2*y(t) = 40*exp(3*t), diff(x(t),t)+x(t)-diff(y(t),t) = 36*exp(t), x(0) = 1, y(0) = 3, D(x)(0) = 1], singsol=all)
✓ Solution by Mathematica
Time used: 0.044 (sec). Leaf size: 62
DSolve[{D[x[t],{t,2}]+D[x[t],t]+D[y[t],t]-2*y[t]==40*Exp[3*t],D[x[t],t]+x[t]-D[y[t],t]==36*Exp[t]},{x[0]==1,y[0]==3,Derivative[1][x][0] == 1},{x[t],y[t]},t,IncludeSingularSolutions -> True]