Internal
problem
ID
[17975]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
191
(page
298)
Date
solved
:
Friday, March 14, 2025 at 04:53:34 AM
CAS
classification
:
system_of_ODEs
ode:=[t*diff(x(t),t)+6*x(t)-y(t)-3*z(t) = 0, t*diff(y(t),t)+23*x(t)-6*y(t)-9*z(t) = 0, t*diff(z(t),t)+x(t)+y(t)-2*z(t) = 0]; dsolve(ode);
ode={t*D[x[t],t]+6*x[t]-y[t]-3*z[t]==0,t*D[y[t],t]+23*x[t]-6*y[t]-9*z[t]==0,t*D[z[t],t]+x[t]+y[t]-2*z[t]==0}; 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(t*Derivative(x(t), t) + 6*x(t) - y(t) - 3*z(t),0),Eq(t*Derivative(y(t), t) + 23*x(t) - 6*y(t) - 9*z(t),0),Eq(t*Derivative(z(t), t) + x(t) + y(t) - 2*z(t),0)] ics = {} dsolve(ode,func=[x(t),y(t),z(t)],ics=ics)