Can you use these methods in the HSC?
Simpson
A = h/3 [1st + last + 4(odds) + 2 (evens)]
Trapezoidal
A = h/2 [ 1st + Last + 2 (sum of others)]
or the stupid long way.
FOR SIMPSON
b-a /6 [f(a) + 4f x (b-a/2) + f(b)]
FOR TRAPEZOID
1/2 (b-a) f(a) + f(b)
Simpson
A = h/3 [1st + last + 4(odds) + 2 (evens)]
Trapezoidal
A = h/2 [ 1st + Last + 2 (sum of others)]
or the stupid long way.
FOR SIMPSON
b-a /6 [f(a) + 4f x (b-a/2) + f(b)]
FOR TRAPEZOID
1/2 (b-a) f(a) + f(b)
Last edited: