88.23.5 problem 6

Internal problem ID [24179]
Book : Elementary Differential Equations. By Lee Roy Wilcox and Herbert J. Curtis. 1961 first edition. International texbook company. Scranton, Penn. USA. CAT number 61-15976
Section : Chapter 5. Special Techniques for Linear Equations. Miscellaneous Exercises at page 162
Problem number : 6
Date solved : Thursday, October 02, 2025 at 10:00:31 PM
CAS classification : [[_2nd_order, _linear, _nonhomogeneous]]

\begin{align*} y^{\prime \prime }+y^{\prime }-2 y&=1+\ln \left (x \right ) \end{align*}
Maple. Time used: 0.002 (sec). Leaf size: 38
ode:=diff(diff(y(x),x),x)+diff(y(x),x)-2*y(x) = ln(x)+1; 
dsolve(ode,y(x), singsol=all);
 
\[ y = {\mathrm e}^{-2 x} c_2 +{\mathrm e}^{x} c_1 -\frac {\ln \left (x \right )}{2}-\frac {{\mathrm e}^{-2 x} \operatorname {Ei}_{1}\left (-2 x \right )}{6}-\frac {1}{2}-\frac {{\mathrm e}^{x} \operatorname {Ei}_{1}\left (x \right )}{3} \]
Mathematica. Time used: 0.044 (sec). Leaf size: 50
ode=D[y[x],{x,2}]+D[y[x],x]-2*y[x]==Log[x]+1; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to \frac {1}{6} \left (2 e^x \operatorname {ExpIntegralEi}(-x)+e^{-2 x} \operatorname {ExpIntegralEi}(2 x)-3 \log (x)+6 c_1 e^{-2 x}+6 c_2 e^x-3\right ) \end{align*}
Sympy. Time used: 1.647 (sec). Leaf size: 36
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-2*y(x) - log(x) + Derivative(y(x), x) + Derivative(y(x), (x, 2)) - 1,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = \left (C_{1} + \frac {\operatorname {Ei}{\left (- x \right )}}{3}\right ) e^{x} + \left (C_{2} + \frac {\operatorname {Ei}{\left (2 x \right )}}{6}\right ) e^{- 2 x} - \frac {\log {\left (x \right )}}{2} - \frac {1}{2} \]