82.49.3 problem Ex. 3

Internal problem ID [19005]
Book : Introductory Course On Differential Equations by Daniel A Murray. Longmans Green and Co. NY. 1924
Section : Chapter IX. Equations of the second order. problems at page 111
Problem number : Ex. 3
Date solved : Tuesday, January 28, 2025 at 12:45:13 PM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} \left (3-x \right ) y^{\prime \prime }-\left (9-4 x \right ) y^{\prime }+\left (6-3 x \right ) y&=0 \end{align*}

Solution by Maple

Time used: 0.006 (sec). Leaf size: 29

dsolve((3-x)*diff(y(x),x$2)-(9-4*x)*diff(y(x),x)+(6-3*x)*y(x)=0,y(x), singsol=all)
 
\[ y \left (x \right ) = 4 \left (x^{3}-\frac {21}{2} x^{2}+\frac {75}{2} x -\frac {183}{4}\right ) c_{2} {\mathrm e}^{3 x}+{\mathrm e}^{x} c_{1} \]

Solution by Mathematica

Time used: 0.212 (sec). Leaf size: 42

DSolve[(3-x)*D[y[x],{x,2}]-(9-4*x)*D[y[x],x]+(6-3*x)*y[x]==0,y[x],x,IncludeSingularSolutions -> True]
 
\[ y(x)\to \frac {1}{8} c_2 e^{3 x-9} \left (4 x^3-42 x^2+150 x-183\right )+c_1 e^{x-3} \]