Internal
problem
ID
[4558]
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.26
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.052 (sec). Leaf size: 65
dsolve([diff(diff(x(t),t),t)+2*x(t)-2*diff(y(t),t) = 0, 3*diff(x(t),t)+diff(diff(y(t),t),t)-8*y(t) = 240*exp(t), x(0) = 0, y(0) = 0, D(x)(0) = 0, D(y)(0) = 0], singsol=all)
✓ Solution by Mathematica
Time used: 0.414 (sec). Leaf size: 72
DSolve[{D[x[t],{t,2}]+2*x[t]-2*D[y[t],t]==0,3*D[x[t],t]+D[y[t],{t,2}]-8*y[t]==240*Exp[t]},{x[0]==0,y[0]==0,Derivative[1][x][0] == 0,Derivative[1][y][0] == 0},{x[t],y[t]},t,IncludeSingularSolutions -> True]