82.36.3 problem Ex. 3

Internal problem ID [18929]
Book : Introductory Course On Differential Equations by Daniel A Murray. Longmans Green and Co. NY. 1924
Section : Chapter VII. Linear equations with variable coefficients. Problems at page 88
Problem number : Ex. 3
Date solved : Tuesday, January 28, 2025 at 12:37:16 PM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} x^{2} y^{\prime \prime }+2 x y^{\prime }-20 y&=\left (1+x \right )^{2} \end{align*}

Solution by Maple

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

dsolve(x^2*diff(y(x),x$2)+2*x*diff(y(x),x)-20*y(x)=(x+1)^2,y(x), singsol=all)
 
\[ y \left (x \right ) = c_{2} x^{4}+\frac {c_{1}}{x^{5}}-\frac {x^{2}}{14}-\frac {x}{9}-\frac {1}{20} \]

Solution by Mathematica

Time used: 0.020 (sec). Leaf size: 33

DSolve[x^2*D[y[x],{x,2}]+2*x*D[y[x],x]-20*y[x]==(x+1)^2,y[x],x,IncludeSingularSolutions -> True]
 
\[ y(x)\to \frac {c_1}{x^5}+c_2 x^4-\frac {x^2}{14}-\frac {x}{9}-\frac {1}{20} \]