Numerical approximation methods are techniques used to estimate the value of mathematical expressions that are difficult or impossible to calculate exactly. These methods are especially helpful in integrating functions for which no simple antiderivative exists, such as the normal distribution's probability density function.
In this exercise, Simpson's Rule is utilized for numerical approximation. It is a method that approximates the area under a curve (i.e., the definite integral) by fitting parabolas between sets of points on the curve.
Here's how Simpson's Rule is applied:
- The interval of integration is divided into an even number of sub-intervals (n=6 in this case).
- Function values are calculated at both endpoints and at the midpoint of each sub-interval.
- The approximation formula \[\frac{h}{3} [f(x_0) + 4f(x_1) + 2f(x_2) + \ldots + 2f(x_{n-2}) + 4f(x_{n-1}) + f(x_n)]\] is used, where f(x) values at endpoints are summed once, and f(x) values at interior points are multiplied by either 4 or 2, depending on their position.
Simpson's Rule is favored for its simplicity and efficiency, requiring fewer calculations while providing acceptable accuracy for smooth functions such as the standard normal distribution.