Add a method "simpson" to the integrator class that takes in arguments of (self, f) that uses Simpson's rule to integrate the given function f. I am specifically referring to Simpson's 1/3 rule, which approximates an integral by evaluating it at the limits of integration a and b as well as at the point f((a + b)/2).
