50.11.20 problem 5(e)

Internal problem ID [8004]
Book : Differential Equations: Theory, Technique, and Practice by George Simmons, Steven Krantz. McGraw-Hill NY. 2007. 1st Edition.
Section : Chapter 2. Second-Order Linear Equations. Section 2.3. THE METHOD OF VARIATION OF PARAMETERS. Page 71
Problem number : 5(e)
Date solved : Wednesday, March 05, 2025 at 05:23:12 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} x^{2} y^{\prime \prime }-2 x y^{\prime }+2 y&=x \,{\mathrm e}^{-x} \end{align*}

Maple. Time used: 0.008 (sec). Leaf size: 25
ode:=x^2*diff(diff(y(x),x),x)-2*x*diff(y(x),x)+2*y(x) = x*exp(-x); 
dsolve(ode,y(x), singsol=all);
 
\[ y = x \left (\operatorname {Ei}_{1}\left (x \right ) x +c_{2} x +\operatorname {Ei}_{1}\left (x \right )-{\mathrm e}^{-x}+c_{1} \right ) \]
Mathematica. Time used: 0.049 (sec). Leaf size: 30
ode=x^2*D[y[x],{x,2}]-2*x*D[y[x],x]+2*y[x]==x*Exp[-x]; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ y(x)\to x \left (-(x+1) \operatorname {ExpIntegralEi}(-x)-e^{-x}+c_2 x+c_1\right ) \]
Sympy. Time used: 0.899 (sec). Leaf size: 32
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x**2*Derivative(y(x), (x, 2)) - 2*x*Derivative(y(x), x) - x*exp(-x) + 2*y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = x \left (C_{1} + C_{2} x - x \operatorname {Ei}{\left (x e^{i \pi } \right )} - \operatorname {Ei}{\left (x e^{i \pi } \right )} - e^{- x}\right ) \]