The question asks, "Use the trapezoid rule (when $n=8$) to approximate the arc length of the graph of $y=2x^3-2x+1$ from $A (0,1)$ to $B(2,13)$"
I first graphed this out and found the points to have $(0,1)$, $(0.25, 0.53125)$, $(0.5, 0.25), (0.75, 0.3437), (1,1), (1.25, 2.40625), (1.5, 4.75), (1.75, 8.21875), (2,13)$ as the points of each trapezoid, and found the distance between each point using the distance formula and got an answer something like $13.92$. This is not the correct answer to this problem. Please help!
There are two reasonable interpretations of this problem. More experienced students would likely say to do $$s=\int ds=\int_0^2\sqrt{1+y^{\prime 2}(x)}dx\approx\frac h2\sum_{i=0}^8w_i\sqrt{1+(y^{\prime}(x_i))^2}\approx14.09254$$ Where $w_0=w_8=1$ and all other $w_i=2$. But I betcha that the questioner is doing something like $$s\approx\sum_{i=0}^7\sqrt{(x_{i+1}-x_i)^2+(y_{i+1}-y_i)^2}\approx13.92768$$ EDIT: That last sum could be rewritten as $$s\approx\sum_{i=0}^7\sqrt{1+\left(\frac{y_{i+1}-y_i}{x_{i+1}-x_i}\right)^2}(x_{i+1}-x_i)$$ And as such could be considered to be the midpoint rule using central differences to approximate the derivative of the function. Normally the midpoint rule is a little more accurate than the trapezoidal rule with error in the opposite direction. The is indeed the case here as the exact value seems to be close to $13.964791$, perhaps validating the original questioner's intuition for the problem.