4.36.21 y(x)=0

ODE
y(x)=0 ODE Classification

[[_2nd_order, _quadrature]]

Book solution method
TO DO

Mathematica
cpu = 0.016543 (sec), leaf count = 12

{{y(x)c2x+c1}}

Maple
cpu = 0.003 (sec), leaf count = 9

{y(x)=_C1x+_C2} 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