4.45.48 \(3 y'''(x)+x y''''(x)=0\)

ODE
\[ 3 y'''(x)+x y''''(x)=0 \] ODE Classification

[[_high_order, _missing_y]]

Book solution method
TO DO

Mathematica
cpu = 0.177914 (sec), leaf count = 25

\[\left \{\left \{y(x)\to x (c_4 x+c_3)+\frac {1}{2} c_1 \log (x)+c_2\right \}\right \}\]

Maple
cpu = 0.013 (sec), leaf count = 18

\[[y \left (x \right ) = \textit {\_C1} +\textit {\_C2} \ln \left (x \right )+\textit {\_C3} \,x^{2}+\textit {\_C4} x]\] Mathematica raw input

DSolve[3*y'''[x] + x*y''''[x] == 0,y[x],x]

Mathematica raw output

{{y[x] -> C[2] + x*(C[3] + x*C[4]) + (C[1]*Log[x])/2}}

Maple raw input

dsolve(x*diff(diff(diff(diff(y(x),x),x),x),x)+3*diff(diff(diff(y(x),x),x),x) = 0, y(x))

Maple raw output

[y(x) = _C1+_C2*ln(x)+_C3*x^2+_C4*x]