3.8 problem Example 3.37

Internal problem ID [5110]

Book: THEORY OF DIFFERENTIAL EQUATIONS IN ENGINEERING AND MECHANICS. K.T. CHAU, CRC Press. Boca Raton, FL. 2018
Section: Chapter 3. Ordinary Differential Equations. Section 3.5 HIGHER ORDER ODE. Page 181
Problem number: Example 3.37.
ODE order: 5.
ODE degree: 1.

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

\[ \boxed {y^{\left (5\right )}-\frac {y^{\prime \prime \prime \prime }}{t}=0} \]

Solution by Maple

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

dsolve(diff(y(t),t$5)-1/t*diff(y(t),t$4)=0,y(t), singsol=all)
 

\[ y \left (t \right ) = c_{4} t^{5}+c_{3} t^{3}+c_{2} t^{2}+c_{5} t +c_{1} \]

Solution by Mathematica

Time used: 0.023 (sec). Leaf size: 33

DSolve[y'''''[t]-1/t*y''''[t]==0,y[t],t,IncludeSingularSolutions -> True]
 

\begin{align*} y(t)\to \frac {c_1 t^5}{120}+c_5 t^3+c_4 t^2+c_3 t+c_2 \\ \end{align*}