9.33 problem 14.5 (c)

Internal problem ID [13558]

Book: Ordinary Differential Equations. An introduction to the fundamentals. Kenneth B. Howell. second edition. CRC Press. FL, USA. 2020
Section: Chapter 14. Higher order equations and the reduction of order method. Additional exercises page 277
Problem number: 14.5 (c).
ODE order: 4.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime \prime \prime }-8 y^{\prime \prime \prime }+24 y^{\prime \prime }-32 y^{\prime }+16 y=0} \]

Solution by Maple

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

dsolve([diff(y(x),x$4)-8*diff(y(x),x$3)+24*diff(y(x),x$2)-32*diff(y(x),x)+16*y(x)=0,exp(2*x)],singsol=all)
 

\[ y \left (x \right ) = {\mathrm e}^{2 x} \left (c_{4} x^{3}+x^{2} c_{3} +c_{2} x +c_{1} \right ) \]

Solution by Mathematica

Time used: 0.003 (sec). Leaf size: 28

DSolve[y''''[x]-8*y'''[x]+24*y''[x]-32*y'[x]+16*y[x]==0,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to e^{2 x} (x (x (c_4 x+c_3)+c_2)+c_1) \]