Internal
problem
ID
[8051]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
18.
Linear
equations
with
variable
coefficients
(Equations
of
second
order).
Supplemetary
problems.
Page
120
Problem
number
:
31
Date
solved
:
Tuesday, September 30, 2025 at 05:14:45 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=x^8*diff(diff(y(x),x),x)+4*x^7*diff(y(x),x)+y(x) = 1/x^3; dsolve(ode,y(x), singsol=all);
ode=x^8*D[y[x],{x,2}]+4*x^7*D[y[x],x]+y[x]==1/x^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**8*Derivative(y(x), (x, 2)) + 4*x**7*Derivative(y(x), x) + y(x) - 1/x**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-x**11*Derivative(y(x), (x, 2)) - x**3*y(x) + 1)/(4*x**10) cannot be solved by the factorable group method