Internal
problem
ID
[3243]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
26,
page
115
Problem
number
:
12
Date
solved
:
Monday, January 27, 2025 at 07:27:21 AM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.067 (sec). Leaf size: 51
dsolve([diff(x(t),t)=3*x(t),diff(y(t),t)=2*x(t)+3*y(t),diff(z(t),t)=3*y(t)-2*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.005 (sec). Leaf size: 78
DSolve[{D[x[t],t]==3*x[t],D[y[t],t]==2*x[t]+3*y[t],D[z[t],t]==3*y[t]-2*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]