Internal
problem
ID
[8783]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
71
Date
solved
:
Wednesday, March 05, 2025 at 06:48:24 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = 9*x(t)+4*y(t), diff(y(t),t) = -6*x(t)-y(t), diff(z(t),t) = 6*x(t)+4*y(t)+3*z(t)]; dsolve(ode);
ode={D[x[t],t]==9*x[t]+4*y[t],D[y[t],t]==-6*x[t]-y[t],D[z[t],t]==6*x[t]+4*y[t]+3*z[t]}; ic={}; DSolve[{ode,ic},{x[t],y[t],z[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") y = Function("y") z = Function("z") ode=[Eq(-9*x(t) - 4*y(t) + Derivative(x(t), t),0),Eq(6*x(t) + y(t) + Derivative(y(t), t),0),Eq(-6*x(t) - 4*y(t) - 3*z(t) + Derivative(z(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t),z(t)],ics=ics)