Input :=
V0 = Integrate[ W, {u,0,L}]
Output = L W
Input :=
M0 = Integrate[ u W, {u,0,L} ]
Output = 2 L W ---- 2
Input :=
yppp[x_] = V0 / EI - Integrate[ W/EI, {u,0,x} ]
Output = L W W x --- - --- EI EI
Input :=
ypp[x_] = M0 / EI + Integrate[ yppp[u], {u,0,x}]
Output = 2 2 L W L W x W x ---- + ----- - ---- 2 EI EI 2 EI
Input :=
yp[x_] = 0 + Integrate[ ypp[u], {u,0,x} ]
Output = 2 2 3 L W x L W x W x ------ + ------ - ---- 2 EI 2 EI 6 EI
Input :=
y[x_] = 0 + Integrate[ yp[u], {u,0,x} ]
Output = 2 2 3 4 L W x L W x W x ------- + ------ - ----- 4 EI 6 EI 24 EI
Here is the tip deflection.
Input := y[L]
Output = 4 3 L W ------ 8 EI