Internal
problem
ID
[14122]
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(c)
Date
solved
:
Tuesday, January 28, 2025 at 06:14:49 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.076 (sec). Leaf size: 53
dsolve([diff(x(t),t) = 7*x(t)-4*y(t)+10*exp(t), diff(y(t),t) = 3*x(t)+14*y(t)+6*exp(2*t), x(0) = 1, y(0) = -1], singsol=all)
✓ Solution by Mathematica
Time used: 0.073 (sec). Leaf size: 64
DSolve[{D[x[t],t]==7*x[t]-4*y[t]+10*Exp[t],D[y[t],t]==3*x[t]+14*y[t]+6*Exp[2*t]},{x[0]==1,y[0]==-1},{x[t],y[t]},t,IncludeSingularSolutions -> True]