83.47.11 problem Ex 11 page 90

Internal problem ID [19517]
Book : A Text book for differentional equations for postgraduate students by Ray and Chaturvedi. First edition, 1958. BHASKAR press. INDIA
Section : Book Solved Excercises. Chapter VI. Homogeneous linear equations with variable coefficients
Problem number : Ex 11 page 90
Date solved : Monday, March 31, 2025 at 07:28:56 PM
CAS classification : [[_high_order, _with_linear_symmetries]]

\begin{align*} 16 \left (x +1\right )^{4} y^{\prime \prime \prime \prime }+96 \left (x +1\right )^{3} y^{\prime \prime \prime }+104 \left (x +1\right )^{2} y^{\prime \prime }+8 \left (x +1\right ) y^{\prime }+y&=x^{2}+4 x +3 \end{align*}

Maple. Time used: 0.007 (sec). Leaf size: 48
ode:=16*(1+x)^4*diff(diff(diff(diff(y(x),x),x),x),x)+96*(1+x)^3*diff(diff(diff(y(x),x),x),x)+104*(1+x)^2*diff(diff(y(x),x),x)+8*(1+x)*diff(y(x),x)+y(x) = x^2+4*x+3; 
dsolve(ode,y(x), singsol=all);
 
\[ y = \frac {\left (x^{2}+52 x +51\right ) \sqrt {x +1}+225 \left (c_4 x +c_3 +c_4 \right ) \ln \left (x +1\right )+225 c_2 x +225 c_1 +225 c_2}{225 \sqrt {x +1}} \]
Mathematica. Time used: 0.029 (sec). Leaf size: 61
ode=16*(x+1)^4*D[y[x],{x,4}]+96*(x+1)^3*D[y[x],{x,3}]+104*(x+1)^2*D[y[x],{x,2}]+8*(x+1)*D[y[x],x]+y[x]==x^2+4*x+3; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ y(x)\to \frac {1}{225} \left (x^2+52 x+\frac {225 c_1}{\sqrt {x+1}}+225 c_3 \sqrt {x+1}+51\right )+\frac {(c_4 (x+1)+c_2) \log (x+1)}{\sqrt {x+1}} \]
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-x**2 - 4*x + 16*(x + 1)**4*Derivative(y(x), (x, 4)) + 96*(x + 1)**3*Derivative(y(x), (x, 3)) + 104*(x + 1)**2*Derivative(y(x), (x, 2)) + (8*x + 8)*Derivative(y(x), x) + y(x) - 3,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : The given ODE Derivative(y(x), x) - (-16*x**4*Derivative(y(x), (x, 4)) - 96*x**3*Derivative(y(x), (x, 3)) - 64*x**3*Derivative(y(x), (x, 4)) - 104*x**2*Derivative(y(x), (x, 2)) - 288*x**2*Derivative(y(x), (x, 3)) - 96*x**2*Derivative(y(x), (x, 4)) + x**2 - 208*x*Derivative(y(x), (x, 2)) - 288*x*Derivative(y(x), (x, 3)) - 64*x*Derivative(y(x), (x, 4)) + 4*x - y(x) - 104*Derivative(y(x), (x, 2)) - 96*Derivative(y(x), (x, 3)) - 16*Derivative(y(x), (x, 4)) + 3)/(8*(x + 1)) cannot be solved by the factorable group method