Internal
problem
ID
[17968]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
176
(page
265)
Date
solved
:
Monday, March 31, 2025 at 04:52:47 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(x),x) = y(x)+z(x), diff(z(x),x) = y(x)+z(x)+x]; dsolve(ode);
ode={D[y[x],x]==y[x]+z[x],D[z[x],x]==y[x]+z[x]+x}; ic={}; DSolve[{ode,ic},{y[x],z[x]},x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") z = Function("z") ode=[Eq(-y(x) - z(x) + Derivative(y(x), x),0),Eq(-x - y(x) - z(x) + Derivative(z(x), x),0)] ics = {} dsolve(ode,func=[y(x),z(x)],ics=ics)