Internal
problem
ID
[14290]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
196
Date
solved
:
Tuesday, January 28, 2025 at 06:25:50 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.042 (sec). Leaf size: 44
dsolve([diff(x(t),t) = y(t)-x(t), diff(y(t),t) = -x(t)-3*y(t), x(1) = 0, y(1) = 1], singsol=all)
✓ Solution by Mathematica
Time used: 0.004 (sec). Leaf size: 31
DSolve[{D[x[t],t]==y[t]-x[t],D[y[t],t]==-x[t]-3*y[t]},{x[1]==0,y[1]==1},{x[t],y[t]},t,IncludeSingularSolutions -> True]