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