Internal
problem
ID
[11425]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
3,
linear
third
order
Problem
number
:
1450
Date
solved
:
Sunday, March 30, 2025 at 08:22:00 PM
CAS
classification
:
[[_3rd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(y(x),x),x),x)+y(x)*a*x^3-b*x = 0; dsolve(ode,y(x), singsol=all);
ode=-(b*x) + a*x^3*y[x] + Derivative[3][y][x] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(a*x**3*y(x) - b*x + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : solve: Cannot solve a*x**3*y(x) - b*x + Derivative(y(x), (x, 3))