Use the Trapezium rule to estimate the area between the curve $y = x^2 -8x + 18$ and the $x$ axis from $x = 2$ to $x = 6$. Use $4$ strips of equal width.
What I did: height $= \frac{(b - a)}{n}$ $= \frac{(6 - 2)}{4} = 1$
$y_0 = 6 , y_1 = 3 , y_2 = 0 , y_3 = 3 , y_4 = 6$
$I = \frac{1}{2} [6 + 2(3+0+3)+6]$ $= 15 $ square units
But it says the answer is $14$.
You made a mistake in evaluating the function at $x=4$. You should have $y_2 = 2$ rather than $y_2 = 0$, so that you have
$$\frac{1}{2} [6 + 2(3+2+3)+6] = 14$$
as expected.