14.4 problem 4

Internal problem ID [14679]

Book: INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section: Chapter 4. Higher Order Equations. Exercises 4.6, page 187
Problem number: 4.
ODE order: 4.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime \prime \prime }+9 y^{\prime \prime }=1} \]

Solution by Maple

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

dsolve(diff(y(t),t$4)+9*diff(y(t),t$2)=1,y(t), singsol=all)
 

\[ y \left (t \right ) = \frac {t^{2}}{18}-\frac {c_{1} \cos \left (3 t \right )}{9}-\frac {c_{2} \sin \left (3 t \right )}{9}+c_{3} t +c_{4} \]

Solution by Mathematica

Time used: 0.16 (sec). Leaf size: 39

DSolve[y''''[t]+9*y''[t]==1,y[t],t,IncludeSingularSolutions -> True]
 

\[ y(t)\to \frac {t^2}{18}+c_4 t-\frac {1}{9} c_1 \cos (3 t)-\frac {1}{9} c_2 \sin (3 t)+c_3 \]