Internal
problem
ID
[17977]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
185
(page
297)
Date
solved
:
Monday, March 31, 2025 at 04:53:00 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)+x(t)+y(t) = t^2, diff(y(t),t)+y(t)+z(t) = 2*t, diff(z(t),t)+z(t) = t]; dsolve(ode);
ode={D[x[t],t]+x[t]+y[t]==t^2,D[y[t],t]+y[t]+z[t]==2*t,D[z[t],t]+z[t]==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(-t**2 + x(t) + y(t) + Derivative(x(t), t),0),Eq(-2*t + y(t) + z(t) + Derivative(y(t), t),0),Eq(-t + z(t) + Derivative(z(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t),z(t)],ics=ics)