Internal
problem
ID
[17935]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
142
(page
205)
Date
solved
:
Monday, March 31, 2025 at 04:51:52 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(x),x),x)+1/x^2/ln(x)*y(x) = exp(x)*(2/x+ln(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+1/(x^2*Log[x])*y[x]==Exp[x]*(2/x+Log[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-log(x) - 2/x)*exp(x) + Derivative(y(x), (x, 2)) + y(x)/(x**2*log(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : solve: Cannot solve (-log(x) - 2/x)*exp(x) + Derivative(y(x), (x, 2)) + y(x)/(x**2*log(x))