ODE
\[ y''(x)=0 \] ODE Classification
[[_2nd_order, _quadrature]]
Book solution method
TO DO
Mathematica ✓
cpu = 0.016543 (sec), leaf count = 12
\[\left \{\left \{y(x)\to c_2 x+c_1\right \}\right \}\]
Maple ✓
cpu = 0.003 (sec), leaf count = 9
\[ \left \{ y \left ( x \right ) ={\it \_C1}\,x+{\it \_C2} \right \} \] Mathematica raw input
DSolve[y''[x] == 0,y[x],x]
Mathematica raw output
{{y[x] -> C[1] + x*C[2]}}
Maple raw input
dsolve(diff(diff(y(x),x),x) = 0, y(x),'implicit')
Maple raw output
y(x) = _C1*x+_C2