23.5.93 problem 93

Internal problem ID [6702]
Book : Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section : Part II. Chapter 5. THE EQUATION IS LINEAR AND OF ORDER GREATER THAN TWO, page 410
Problem number : 93
Date solved : Tuesday, September 30, 2025 at 03:50:59 PM
CAS classification : [[_3rd_order, _quadrature]]

\begin{align*} x^{3} y^{\prime \prime \prime }&=a \end{align*}
Maple. Time used: 0.001 (sec). Leaf size: 20
ode:=x^3*diff(diff(diff(y(x),x),x),x) = a; 
dsolve(ode,y(x), singsol=all);
 
\[ y = \frac {a \ln \left (x \right )}{2}+\frac {c_1 \,x^{2}}{2}+c_2 x +c_3 \]
Mathematica. Time used: 0.002 (sec). Leaf size: 24
ode=x^3*D[y[x],{x,3}] == a; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to \frac {1}{2} a \log (x)+x (c_3 x+c_2)+c_1 \end{align*}
Sympy. Time used: 0.103 (sec). Leaf size: 19
from sympy import * 
x = symbols("x") 
a = symbols("a") 
y = Function("y") 
ode = Eq(-a + x**3*Derivative(y(x), (x, 3)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = C_{1} + C_{2} x + C_{3} x^{2} + \frac {a \log {\left (x \right )}}{2} \]