Internal
problem
ID
[16044]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.5,
page
64
Problem
number
:
46
Date
solved
:
Thursday, March 13, 2025 at 07:36:29 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x)-2*y(x)/x = -x^2*y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]-(2/x)*y[x]==-x^2*y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2*y(x) + Derivative(y(x), x) - 2*y(x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)