4.36.21 \(y''(x)=0\)

ODE
\[ y''(x)=0 \] ODE Classification

[[_2nd_order, _quadrature]]

Book solution method
TO DO

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

\[\{\{y(x)\to c_2 x+c_1\}\}\]

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

\[[y \left (x \right ) = \textit {\_C1} x +\textit {\_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))

Maple raw output

[y(x) = _C1*x+_C2]