58.1.11 problem 11

Internal problem ID [9082]
Book : Second order enumerated odes
Section : section 1
Problem number : 11
Date solved : Wednesday, March 05, 2025 at 07:19:18 AM
CAS classification : [[_2nd_order, _quadrature]]

\begin{align*} {y^{\prime \prime }}^{3}&=0 \end{align*}

Maple. Time used: 0.018 (sec). Leaf size: 9
ode:=diff(diff(y(x),x),x)^3 = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = c_{1} x +c_{2} \]
Mathematica. Time used: 0.002 (sec). Leaf size: 12
ode=(D[y[x],{x,2}])^3==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ y(x)\to c_2 x+c_1 \]
Sympy. Time used: 0.036 (sec). Leaf size: 7
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(Derivative(y(x), (x, 2))**3,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = C_{1} + C_{2} x \]