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