Internal
problem
ID
[6790]
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
:
13
Date
solved
:
Monday, January 27, 2025 at 02:30:35 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.028 (sec). Leaf size: 41
dsolve([diff(x(t),t)-x(t)+diff(y(t),t)+3*y(t)=exp(-t)-1,diff(x(t),t)+2*x(t)+diff(y(t),t)+3*y(t)=exp(2*t)+1],singsol=all)
✓ Solution by Mathematica
Time used: 0.075 (sec). Leaf size: 62
DSolve[{D[x[t],t]-x[t]+D[y[t],t]+3*y[t]==Exp[-t]-1,D[x[t],t]+2*x[t]+D[y[t],t]+3*y[t]==Exp[2*t]+1},{x[t],y[t]},t,IncludeSingularSolutions -> True]