Internal
problem
ID
[6791]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
21.
System
of
simultaneous
linear
equations.
Supplemetary
problems.
Page
163
Problem
number
:
17
Date
solved
:
Monday, January 27, 2025 at 02:30:36 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.033 (sec). Leaf size: 44
dsolve([diff(x(t),t)-x(t)+diff(y(t),t)+2*y(t)=1+exp(t),diff(y(t),t)+2*y(t)+diff(z(t),t)+z(t)=2+exp(t),diff(x(t),t)-x(t)+diff(z(t),t)+z(t)=3+exp(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.076 (sec). Leaf size: 60
DSolve[{D[x[t],t]-x[t]+D[y[t],t]+2*y[t]==1+Exp[t],D[y[t],t]+2*y[t]+D[z[t],t]+z[t]==2+Exp[t],D[x[t],t]-x[t]+D[z[t],t]+z[t]==3+Exp[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]