Choose a Topic |
Simpson's RuleThe Trapezoidal Rule can be improved by assuming that each two adjacent sub-areas are a single bounded parabola rather than each sub-area being a trapezoid.
This assumption leads to Simpson's Rule for irregular areas and is quoted as follows; A = [(O1 + On) + 2(O3 + O5 + On-2) + 4(O2 + O4 + On-1)] A = [S(1st + last offset) + 2S(odd offsets) + 4S(even offsets)]
This formula is more accurate but has the disadvantage that n must be odd. In this case it is not possible to directly compute the total area AXYZCBA. Instead the area AXYBA is computed using Simpson's Rule and the additional area BYZCB must be computed separately. This could have been avoided if the irregular area had been originally subdivided into an odd number of sub-areas.
|