[[_2nd_order, _quadrature]]
Book solution method
TO DO
Mathematica ✓
cpu = 0.016543 (sec), leaf count = 12
Maple ✓
cpu = 0.003 (sec), leaf count = 9
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