Internal
problem
ID
[3243]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
26,
page
115
Problem
number
:
12
Date
solved
:
Sunday, March 30, 2025 at 01:23:41 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = 3*x(t), diff(y(t),t) = 2*x(t)+3*y(t), diff(z(t),t) = 3*y(t)-2*z(t)]; dsolve(ode);
ode={D[x[t],t]==3*x[t],D[y[t],t]==2*x[t]+3*y[t],D[z[t],t]==3*y[t]-2*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(-3*x(t) + Derivative(x(t), t),0),Eq(-2*x(t) - 3*y(t) + Derivative(y(t), t),0),Eq(-3*y(t) + 2*z(t) + Derivative(z(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t),z(t)],ics=ics)