Internal
problem
ID
[18719]
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
:
16
Date
solved
:
Tuesday, January 28, 2025 at 12:12:18 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.053 (sec). Leaf size: 78
dsolve([diff(z(x),x)-3*y(x)+2*z(x)=exp(x),diff(y(x),x)+2*y(x)-z(x)=exp(3*x)],singsol=all)
✓ Solution by Mathematica
Time used: 3.298 (sec). Leaf size: 169
DSolve[{D[z[x],x]-3*y[x]+2*z[x]==Exp[x],D[y[x],x]+2*y[x]-z[x]==Exp[3*x]},{y[x],z[x]},x,IncludeSingularSolutions -> True]