Internal
problem
ID
[8783]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
71
Date
solved
:
Monday, January 27, 2025 at 04:58:35 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.058 (sec). Leaf size: 57
dsolve([diff(x(t),t)=9*x(t)+4*y(t),diff(y(t),t)=-6*x(t)-y(t),diff(z(t),t)=6*x(t)+4*y(t)+3*z(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.006 (sec). Leaf size: 103
DSolve[{D[x[t],t]==9*x[t]+4*y[t],D[y[t],t]==-6*x[t]-y[t],D[z[t],t]==6*x[t]+4*y[t]+3*z[t]},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]