1.19 problem 26

Internal problem ID [14063]

Book: INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section: Chapter 1. Introduction to Differential Equations. Exercises 1.1, page 10
Problem number: 26.
ODE order: 3.
ODE degree: 1.

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

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

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 0.035 (sec). Leaf size: 23

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

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