Internal
problem
ID
[19338]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
189
(page
297)
Date
solved
:
Sunday, October 12, 2025 at 05:34:12 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(x),x)+2*z(x)/x^2 = 1, diff(z(x),x)+y(x) = x]; dsolve(ode);
ode={D[y[x],x]+2*z[x]/x^2==1,D[z[x],x]+y[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(Derivative(y(x), x) - 1 + 2*z(x)/x**2,0),Eq(-x + y(x) + Derivative(z(x), x),0)] ics = {} dsolve(ode,func=[y(x),z(x)],ics=ics)
NotImplementedError :