Internal
problem
ID
[11512]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
4,
linear
fourth
order
Problem
number
:
1552
Date
solved
:
Thursday, March 13, 2025 at 08:53:32 PM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
ode:=x^2*diff(diff(diff(diff(y(x),x),x),x),x)+2*x*diff(diff(diff(y(x),x),x),x)+a*y(x)-b*x^2 = 0; dsolve(ode,y(x), singsol=all);
ode=x^2*D[y[x],{x,4}]+2*x*D[y[x],{x,3}]+a*y[x]-b*x^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(a*y(x) - b*x**2 + x**2*Derivative(y(x), (x, 4)) + 2*x*Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : solve: Cannot solve a*y(x) - b*x**2 + x**2*Derivative(y(x), (x, 4)) + 2*x*Derivative(y(x), (x, 3))