Given a function f, how can the area under the graph of y=f(x) between two x coordinates a and b be calculated?
∫f(x) dx, a to b
How can ∫f’(x) dx, a to b be evaluated?
f(b)-f(a)
Explain the trapezium rule of approximating ∫f(x) dx, a to b
The area is divided into n equal strips such that each strip has width w=(b-a)/n. Next, a value for f(x) is found for each value of x that forms a boundary at a strip, known as y₀, y₁, y₂,…,yᵣ. The area under the curve is approximately w(y₀+2(y₁+y₂+yᵣ₋₁)+yᵣ)/2