Internal
problem
ID
[16598]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
1.
Basic
concepts
and
definitions.
Exercises
page
18
Problem
number
:
16
Date
solved
:
Thursday, March 13, 2025 at 08:25:34 AM
CAS
classification
:
[_separable]
ode:=(-x^2+1)*diff(y(x),x)+x*y(x) = 2*x; dsolve(ode,y(x), singsol=all);
ode=(1-x^2)*D[y[x],x]+x*y[x]==2*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*y(x) - 2*x + (1 - x**2)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)