14.14 problem 340

Internal problem ID [15198]

Book: A book of problems in ordinary differential equations. M.L. KRASNOV, A.L. KISELYOV, G.I. MARKARENKO. MIR, MOSCOW. 1983
Section: Chapter 2 (Higher order ODE’s). Section 14. Differential equations admitting of depression of their order. Exercises page 107
Problem number: 340.
ODE order: 3.
ODE degree: 1.

CAS Maple gives this as type [[_3rd_order, _missing_y]]

\[ \boxed {x y^{\prime \prime \prime }-y^{\prime \prime }=0} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 14

dsolve(x*diff(y(x),x$3)-diff(y(x),x$2)=0,y(x), singsol=all)
 

\[ y = c_{3} x^{3}+c_{2} x +c_{1} \]

Solution by Mathematica

Time used: 0.024 (sec). Leaf size: 21

DSolve[x*y'''[x]-y''[x]==0,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {c_1 x^3}{6}+c_3 x+c_2 \]