Internal
problem
ID
[2766]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Section
3.12,
Systems
of
differential
equations.
The
nonhomogeneous
equation.
variation
of
parameters.
Page
366
Problem
number
:
10
Date
solved
:
Monday, January 27, 2025 at 06:13:00 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.031 (sec). Leaf size: 81
dsolve([diff(x__1(t),t)=2*x__1(t)+1*x__2(t)+1*exp(3*t),diff(x__2(t),t)=3*x__1(t)-2*x__2(t)+exp(3*t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.599 (sec). Leaf size: 171
DSolve[{D[ x1[t],t]==2*x1[t]+1*x2[t]+Exp[3*t],D[ x2[t],t]==3*x1[t]-2*x2[t]+Exp[3*t]},{x1[t],x2[t]},t,IncludeSingularSolutions -> True]