Internal
problem
ID
[18712]
Book
:
A
short
course
on
differential
equations.
By
Donald
Francis
Campbell.
Maxmillan
company.
London.
1907
Section
:
Chapter
VII.
Ordinary
differential
equations
in
two
dependent
variables.
Exercises
at
page
86
Problem
number
:
9
Date
solved
:
Tuesday, January 28, 2025 at 12:12:12 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.020 (sec). Leaf size: 34
dsolve([diff(z(x),x)+2*diff(y(x),x)+3*y(x)=0,diff(y(x),x)+3*y(x)-2*z(x)=0],singsol=all)
✓ Solution by Mathematica
Time used: 0.009 (sec). Leaf size: 145
DSolve[{D[z[x],x]+2*D[y[x],x]-3*y[x]==0,D[y[x],x]+3*y[x]-2*z[x]==0},{y[x],z[x]},x,IncludeSingularSolutions -> True]