5.39 problem 1572

Internal problem ID [9151]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 4, linear fourth order
Problem number: 1572.
ODE order: 4.
ODE degree: 1.

CAS Maple gives this as type [[_high_order, _with_linear_symmetries]]

Solve \begin {gather*} \boxed {\left (x^{2}-1\right )^{2} y^{\prime \prime \prime \prime }+10 x \left (x^{2}-1\right ) y^{\prime \prime \prime }+\left (24 x^{2}-8-2 \left (\mu \left (\mu +1\right )+\nu \left (\nu +1\right )\right ) \left (x^{2}-1\right )\right ) y^{\prime \prime }-6 x \left (\mu \left (\mu +1\right )+\nu \left (\nu +1\right )-2\right ) y^{\prime }+\left (\left (\mu \left (\mu +1\right )-\nu \left (\nu +1\right )\right )^{2}-2 \mu \left (\mu +1\right )-2 \nu \left (\nu +1\right )\right ) y=0} \end {gather*}

Solution by Maple

Time used: 0.031 (sec). Leaf size: 37

dsolve((x^2-1)^2*diff(diff(diff(diff(y(x),x),x),x),x)+10*x*(x^2-1)*diff(diff(diff(y(x),x),x),x)+(24*x^2-8-2*(mu*(mu+1)+nu*(nu+1))*(x^2-1))*diff(diff(y(x),x),x)-6*x*(mu*(mu+1)+nu*(nu+1)-2)*diff(y(x),x)+((mu*(mu+1)-nu*(nu+1))^2-2*mu*(mu+1)-2*nu*(nu+1))*y(x)=0,y(x), singsol=all)
 

\[ y \relax (x ) = c_{1} \LegendreP \left (\nu , x\right ) \LegendreP \left (\mu , x\right )+c_{2} \LegendreP \left (\nu , x\right ) \LegendreQ \left (\mu , x\right )+c_{3} \LegendreQ \left (\nu , x\right ) \LegendreP \left (\mu , x\right )+c_{4} \LegendreQ \left (\nu , x\right ) \LegendreQ \left (\mu , x\right ) \]

Solution by Mathematica

Time used: 0.0 (sec). Leaf size: 0

DSolve[(-2*\[Mu]*(1 + \[Mu]) - 2*\[Nu]*(1 + \[Nu]) + (\[Mu]*(1 + \[Mu]) - \[Nu]*(1 + \[Nu]))^2)*y[x] - 6*(-2 + \[Mu]*(1 +\[Mu]) + \[Nu]*(1 + \[Nu]))*x*y'[x] + (-8 + 24*x^3 - 2*(\[Mu]*(1 + \[Mu]) + \[Nu]*(1 + \[Nu]))*(-1 + x^2))*y''[x] + 10*x*(-1 + x^2)*Derivative[3][y][x] + (-1 + x^2)^2*Derivative[4][y][x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

Not solved