Internal
problem
ID
[21739]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
I.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
21.
Applications
of
second
order
differential
equations
Problem
number
:
21-55
Date
solved
:
Thursday, October 02, 2025 at 08:01:39 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(t),t) = 2*y(t)-5*z(t), diff(z(t),t) = 4*y(t)-2*z(t)]; dsolve(ode);
ode={D[y[t],t]==2*y[t]-5*z[t], D[z[t],t]==4*y[t]-2*z[t]}; ic={}; DSolve[{ode,ic},{z[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") z = Function("z") ode=[Eq(-2*y(t) + 5*z(t) + Derivative(y(t), t),0),Eq(-4*y(t) + 2*z(t) + Derivative(z(t), t),0)] ics = {} dsolve(ode,func=[y(t),z(t)],ics=ics)