1.26 problem 26

Internal problem ID [6658]

Book: Second order enumerated odes
Section: section 1
Problem number: 26.
ODE order: 2.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime }+y^{\prime }+y-1-x=0} \]

Solution by Maple

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

dsolve(diff(y(x),x$2)+diff(y(x),x)+y(x)=1+x,y(x), singsol=all)
 

\[ y \left (x \right ) = {\mathrm e}^{-\frac {x}{2}} \sin \left (\frac {\sqrt {3}\, x}{2}\right ) c_{2} +{\mathrm e}^{-\frac {x}{2}} \cos \left (\frac {\sqrt {3}\, x}{2}\right ) c_{1} +x \]

Solution by Mathematica

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

DSolve[y''[x]+y'[x]+y[x]==1+x,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to x+e^{-x/2} \left (c_2 \cos \left (\frac {\sqrt {3} x}{2}\right )+c_1 \sin \left (\frac {\sqrt {3} x}{2}\right )\right ) \\ \end{align*}