Internal
problem
ID
[18645]
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
:
13
Date
solved
:
Monday, March 31, 2025 at 05:48:46 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(x),x)+diff(z(x),x)+6*y(x) = 0, diff(z(x),x)+5*y(x)+z(x) = 0]; dsolve(ode);
ode={D[y[x],x]+D[z[x],x]+6*y[x]==0,D[z[x],x]+5*y[x]+z[x]==0}; ic={}; DSolve[{ode,ic},{y[x],z[x]},x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") z = Function("z") ode=[Eq(6*y(x) + Derivative(y(x), x) + Derivative(z(x), x),0),Eq(5*y(x) + z(x) + Derivative(z(x), x),0)] ics = {} dsolve(ode,func=[y(x),z(x)],ics=ics)