So, I was studying Numerical Integration from Hildebrand where I came across Simpson's Rule and 3/8 rule. Now, Simpson's rule has an error of order 5 and degree of precision 3, which is same as 3/8 rule. The difference lies in the Lagrange polynomials we use to interpolate.
In 3/8 rule we need an extra computation point, hence I feel it's computationally insufficient as compared to Simpson's rule. Or if we restate Simpson's rule is better. My question lies, does 3/8 rule have any advantage?
Simpson's Rule: $\int_a^b f(x) dx\approx \frac{b-a}{6}\Big{[}f(a)+4f(\frac{a+b}{2})+f(b)\Big{]}$ with error as $\frac{1}{90}\Big{(}\frac{b-a}{2}\Big{)}^5|f^{4}(z)|$
3/8 Rule: $\int_a^b f(x)dx\approx \frac{(b-a)}{8}\Big{[}f(a)+3f(\frac{2a+b}{3})+3f(\frac{a+2b}{3})+f(b)\Big{]}$ with error as $\Big{|}\frac{(b-a)^5}{6480}f^4(z)\Big{|}$
Reference: Wikipedia for Formula