1.9 problem HW 5 problem 1(a)

Internal problem ID [6284]

Book: Selected problems from homeworks from different courses
Section: Math 2520, summer 2021. Differential Equations and Linear Algebra. Normandale college, Bloomington, Minnesota
Problem number: HW 5 problem 1(a).
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {y^{\prime \prime }-y^{\prime }-2 y-5 \,{\mathrm e}^{2 x}=0} \end {gather*}

Solution by Maple

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

dsolve(diff(y(x),x$2)-diff(y(x),x)-2*y(x)=5*exp(2*x),y(x), singsol=all)
 

\[ y \relax (x ) = c_{2} {\mathrm e}^{2 x}+{\mathrm e}^{-x} c_{1}+\frac {5 x \,{\mathrm e}^{2 x}}{3} \]

Solution by Mathematica

Time used: 0.014 (sec). Leaf size: 31

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

\begin{align*} y(x)\to c_1 e^{-x}+e^{2 x} \left (\frac {5 x}{3}-\frac {5}{9}+c_2\right ) \\ \end{align*}