Skip to main content

Simpson's Three-Eighth Rule-The Easy Way

 Simpson's three-eighths rule is a very important rule in numerical integration. In this case, we subdivide [a, b] into a number of subintervals of equal length such that the number of subintervals is divisible by 3. That is, the number of intervals must be 6 or 9 or 12, etc. so that we get 7 or 10 or 13 nodal points, etc. 

Simpson's 3/8th rule has some disadvantages. 

i) The number of subintervals must be divisible by 3.

ii) It is of the same order as Simpson's 1/3rd rule which only requires that the number of nodal points must be odd

iii) The error constant c in the case of Simpson's 3/8th rule is c=3/80, which is much larger than the error constant c=1/90, in the case of Simpson's 1/3rd rule. Therefore, the error in the case of Simpson's 3/8th rule is larger than the error in the case of Simpson's 1/3rd rule. due to these disadvantages, Simpson's 3/8th rule is not used in practice.

Comments

Popular posts from this blog

Newton‑Raphson Method | Root‑finding Tutorial with Examples (GATE / Engineering Math)

What is the Newton‑Raphson Method? Derivation of the Algorithm Step-by-Step Example Convergence and Limitations Application in GATE / Engineering Maths Download PDF Notes Newton-Raphson Method:     In this article, we discuss the formula of the Newton-Raphson method, its limitations, and its advantages. Also, we provide a few solved examples and a few unsolved questions for practice.       We discuss Newton iterative formula and then solve a few questions using these iterative formulae. For practice unsolved questions are also provided. This method is generally used to improve the results obtained by one of the previous methods. This method can be derived from Taylor's series.  The formula used as follows: $x_{n+1}= x_n - \frac{f(x_n)}{f'(x_n)}$  NOTE: (1)] This method is useful in cases of large values of $f'(x)$ that is , when the graph of $f(x)$ while crossing the x-axis is nearly vertical. (2)] If $f'(x)$ is zero or nearly zero, the me...

Interpolation With Unevenly Spaced Points

 Interpolation with unevenly spaced points will be discussed in this article. We have two methods to solve the interpolation with unevenly spaced points.  1. Lagrange's method 2. Newton's divided difference formula. We will discuss a few examples depending on these methods. Lastly, we will provide a few examples for practice.