Internal
problem
ID
[17467]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
3.
Systems
of
two
first
order
equations.
Section
3.2
(Two
first
order
linear
differential
equations).
Problems
at
page
142
Problem
number
:
12
Date
solved
:
Tuesday, January 28, 2025 at 10:39:08 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.083 (sec). Leaf size: 42
dsolve([diff(x(t),t) = x(t)-4*y(t)+2*t, diff(y(t),t) = x(t)-3*y(t)-3, x(0) = 1, y(0) = -2], singsol=all)
✓ Solution by Mathematica
Time used: 0.070 (sec). Leaf size: 46
DSolve[{D[x[t],t]==x[t]-4*y[t]+2*t,D[y[t],t]==x[t]-3*y[t]-3},{x[0]==1,y[0]==-2},{x[t],y[t]},t,IncludeSingularSolutions -> True]