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