7.8.18 problem 18

Internal problem ID [232]
Book : Elementary Differential Equations. By C. Henry Edwards, David E. Penney and David Calvis. 6th edition. 2008
Section : Chapter 2. Linear Equations of Higher Order. Section 2.1 (Introduction. Second order linear equations). Problems at page 111
Problem number : 18
Date solved : Thursday, March 13, 2025 at 03:35:42 PM
CAS classification : [[_Emden, _Fowler], [_2nd_order, _with_linear_symmetries]]

\begin{align*} y y^{\prime \prime }&=6 x^{4} \end{align*}

Maple
ode:=y(x)*diff(diff(y(x),x),x) = 6*x^4; 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=y[x]*D[y[x],{x,2}]== 6*x^4; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-6*x**4 + y(x)*Derivative(y(x), (x, 2)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : solve: Cannot solve -6*x**4 + y(x)*Derivative(y(x), (x, 2))