Internal
problem
ID
[20223]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VII.
Linear
equations
with
variable
coefficients.
End
of
chapter
problems
at
page
91
Problem
number
:
Ex.
6
Date
solved
:
Thursday, October 02, 2025 at 05:34:54 PM
CAS
classification
:
[[_3rd_order, _exact, _linear, _nonhomogeneous]]
ode:=x^3*diff(diff(diff(y(x),x),x),x)+2*x^2*diff(diff(y(x),x),x)+2*y(x) = 10*c+10/x; dsolve(ode,y(x), singsol=all);
ode=x^3*D[y[x],{x,3}]+2*x^2*D[y[x],{x,2}]+2*y[x]==10*(c+1/x); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") c = symbols("c") y = Function("y") ode = Eq(-10*c + x**3*Derivative(y(x), (x, 3)) + 2*x**2*Derivative(y(x), (x, 2)) + 2*y(x) - 10/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)