Internal
problem
ID
[18722]
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
:
19
Date
solved
:
Tuesday, January 28, 2025 at 12:12:21 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.090 (sec). Leaf size: 89
dsolve([diff(y(x),x)-2*y(x)-2*z(x)=exp(3*x),diff(z(x),x)+5*y(x)-2*z(x)=exp(4*x)],singsol=all)
✓ Solution by Mathematica
Time used: 0.248 (sec). Leaf size: 110
DSolve[{D[y[x],x]-2*y[x]-2*z[x]==Exp[3*x],D[z[x],x]+5*y[x]-2*z[x]==Exp[4*x]},{y[x],z[x]},x,IncludeSingularSolutions -> True]