Internal
problem
ID
[13946]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
4,
Second
and
Higher
Order
Linear
Differential
Equations.
Problems
page
221
Problem
number
:
Problem
20(g)
Date
solved
:
Monday, March 31, 2025 at 08:20:00 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(x),x),x)+(x-1)/x*diff(y(x),x)+y(x)/x^3 = 1/x^3*exp(-1/x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+(x-1)/x*D[y[x],x]+y[x]/x^3==1/x^3*Exp[-1/x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), (x, 2)) + (x - 1)*Derivative(y(x), x)/x + y(x)/x**3 - exp(-1/x)/x**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-x**3*exp(1/x)*Derivative(y(x), (x, 2)) - y(x)*exp(1/x) + 1)*exp(-1/x)/(x**2*(x - 1)) cannot be solved by the factorable group method