74.15.20 problem 20

Internal problem ID [16380]
Book : INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section : Chapter 4. Higher Order Equations. Exercises 4.7, page 195
Problem number : 20
Date solved : Thursday, March 13, 2025 at 08:11:48 AM
CAS classification : [[_high_order, _missing_y]]

\begin{align*} x^{3} y^{\prime \prime \prime \prime }+6 x^{2} y^{\prime \prime \prime }+7 x y^{\prime \prime }+y^{\prime }&=0 \end{align*}

Maple. Time used: 0.003 (sec). Leaf size: 22
ode:=x^3*diff(diff(diff(diff(y(x),x),x),x),x)+6*x^2*diff(diff(diff(y(x),x),x),x)+7*x*diff(diff(y(x),x),x)+diff(y(x),x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = c_4 \ln \left (x \right )^{3}+c_{3} \ln \left (x \right )^{2}+\ln \left (x \right ) c_{2} +c_{1} \]
Mathematica. Time used: 0.008 (sec). Leaf size: 33
ode=x^3*D[y[x],{x,4}]+6*x^2*D[y[x],{x,3}]+7*x*D[y[x],{x,2}]+D[y[x],x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ y(x)\to \frac {1}{3} c_3 \log ^3(x)+\frac {1}{2} c_2 \log ^2(x)+c_1 \log (x)+c_4 \]
Sympy. Time used: 0.192 (sec). Leaf size: 22
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x**3*Derivative(y(x), (x, 4)) + 6*x**2*Derivative(y(x), (x, 3)) + 7*x*Derivative(y(x), (x, 2)) + Derivative(y(x), x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = C_{1} + C_{2} \log {\left (x \right )} + C_{3} \log {\left (x \right )}^{2} + C_{4} \log {\left (x \right )}^{3} \]