59.1.479 problem 495

Internal problem ID [9651]
Book : Collection of Kovacic problems
Section : section 1
Problem number : 495
Date solved : Sunday, March 30, 2025 at 02:39:26 PM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} \left (2 x^{2}-8 x +11\right ) y^{\prime \prime }-16 \left (x -2\right ) y^{\prime }+36 y&=0 \end{align*}

Maple. Time used: 0.003 (sec). Leaf size: 55
ode:=(2*x^2-8*x+11)*diff(diff(y(x),x),x)-16*(x-2)*diff(y(x),x)+36*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = c_2 \,x^{6}-12 c_2 \,x^{5}+\frac {165 c_2 \,x^{4}}{2}+c_1 \,x^{3}+\frac {3 \left (-8 c_1 -1815 c_2 \right ) x^{2}}{4}+\frac {3 \left (37 c_1 +10890 c_2 \right ) x}{10}-\frac {31 c_1}{5}-\frac {16577 c_2}{8} \]
Mathematica. Time used: 0.587 (sec). Leaf size: 146
ode=(11-8*x+2*x^2)*D[y[x],{x,2}]-16*(x-2)*D[y[x],x]+36*y[x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ y(x)\to \frac {1}{2} \left (2 x+5 i \sqrt {6}-4\right ) \left (2 x^2-8 x+11\right )^2 \exp \left (\int _1^x\frac {2 K[1]+5 i \sqrt {6}-4}{2 (K[1]-4) K[1]+11}dK[1]\right ) \left (c_2 \int _1^x-\frac {4 \exp \left (-2 \int _1^{K[2]}\frac {2 K[1]+5 i \sqrt {6}-4}{2 (K[1]-4) K[1]+11}dK[1]\right )}{\left (-2 i K[2]+5 \sqrt {6}+4 i\right )^2}dK[2]+c_1\right ) \]
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq((32 - 16*x)*Derivative(y(x), x) + (2*x**2 - 8*x + 11)*Derivative(y(x), (x, 2)) + 36*y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
False