Internal
problem
ID
[18519]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
VII.
Linear
equations
of
order
higher
than
the
first.
section
56.
Problems
at
page
163
Problem
number
:
14
Date
solved
:
Monday, March 31, 2025 at 05:41:06 PM
CAS
classification
:
[[_high_order, _missing_y]]
ode:=x^4*diff(diff(diff(diff(y(x),x),x),x),x)+x^3*diff(diff(diff(y(x),x),x),x)-20*x^2*diff(diff(y(x),x),x)+20*x*diff(y(x),x) = 17*x^6; dsolve(ode,y(x), singsol=all);
ode=x^4*D[y[x],{x,4}]+x^3*D[y[x],{x,3}]-20*x^2*D[y[x],{x,2}]+20*x*D[y[x],x]==17*x^6; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-17*x**6 + x**4*Derivative(y(x), (x, 4)) + x**3*Derivative(y(x), (x, 3)) - 20*x**2*Derivative(y(x), (x, 2)) + 20*x*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)