Internal
problem
ID
[7827]
Book
:
Schaums
Outline
Differential
Equations,
4th
edition.
Bronson
and
Costa.
McGraw
Hill
2014
Section
:
Chapter
12.
VARIATION
OF
PARAMETERS.
Supplementary
Problems.
page
109
Problem
number
:
Problem
12.14
Date
solved
:
Tuesday, September 30, 2025 at 05:06:02 PM
CAS
classification
:
[[_2nd_order, _exact, _linear, _nonhomogeneous]]
ode:=diff(diff(y(x),x),x)+1/x*diff(y(x),x)-1/x^2*y(x) = ln(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+1/x*D[y[x],x]-1/x^2*y[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) + Derivative(y(x), (x, 2)) + Derivative(y(x), x)/x - y(x)/x**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)