Internal
problem
ID
[14120]
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
5(a)
Date
solved
:
Tuesday, January 28, 2025 at 06:14:47 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.053 (sec). Leaf size: 30
dsolve([diff(x(t),t) = 7*x(t)+y(t)-1-6*exp(t), diff(y(t),t) = -4*x(t)+3*y(t)+4*exp(t)-3, x(0) = 1, y(0) = -1], singsol=all)
✓ Solution by Mathematica
Time used: 0.229 (sec). Leaf size: 368
DSolve[{D[x[t],t]==7*x[t]+y[t]-1-Exp[t],D[y[t],t]==-4*x[t]+3*y[t]+4*Exp[t]-3},{x[0]==1,y[0]==-1},{x[t],y[t]},t,IncludeSingularSolutions -> True]