Internal
problem
ID
[18640]
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
:
8
Date
solved
:
Monday, March 31, 2025 at 05:48:39 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(z(x),x)+7*y(x)-3*z(x) = 0, 7*diff(y(x),x)+63*y(x)-36*z(x) = 0]; dsolve(ode);
ode={D[z[x],x]+7*y[x]-3*z[x]==0,7*D[y[x],x]+63*y[x]-36*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(7*y(x) - 3*z(x) + Derivative(z(x), x),0),Eq(63*y(x) - 36*z(x) + 7*Derivative(y(x), x),0)] ics = {} dsolve(ode,func=[y(x),z(x)],ics=ics)