7.2 problem 2

Internal problem ID [1717]

Book: Differential equations and their applications, 3rd ed., M. Braun
Section: Section 2.2, linear equations with constant coefficients. Page 138
Problem number: 2.
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {6 y^{\prime \prime }-7 y^{\prime }+y=0} \end {gather*}

Solution by Maple

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

dsolve(6*diff(y(t),t$2)-7*diff(y(t),t)+y(t)=0,y(t), singsol=all)
 

\[ y \relax (t ) = c_{1} {\mathrm e}^{\frac {t}{6}}+c_{2} {\mathrm e}^{t} \]

Solution by Mathematica

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

DSolve[6*y''[t]-7*y'[t]+y[t]==0,y[t],t,IncludeSingularSolutions -> True]
 

\begin{align*} y(t)\to c_1 e^{t/6}+c_2 e^t \\ \end{align*}