In The Trapezoidal Rule article, we discussed the method of adding up areas of trapezoids to approximate areas under a function. In most cases, using trapezoids results in less error than using rectangles. But, could there be an even more accurate method than the trapezoidal rule? The answer is yes! Like the Trapezoidal Rule, Simpson's Rule is another numerical integration technique used to approximate an integral that may be too difficult to compute directly. Unlike the Trapezoidal Rule, Simpson's Rule uses quadratic polynomial approximation, making it a more accurate integral estimation technique. Let's take a deeper look as to what we mean!
Before we get into how this technique is used in practice, let's define this rule!
Simpson's Rule is an integral approximation technique that divides the area under the curve into smaller curves. The area under each smaller curve is added together to obtain an approximation for the total area under the curve.
Simpson's Rule Derivation
Simpson's Rule uses the simple fact that we can build a quadratic equation from any three points. Like the Trapezoidal Rule, Simpson's Rule creates n subintervals. For each pair of consecutive subintervals and , Simpson's Rule builds a quadratic equation of the form through the three points .
Using the equation for a quadratic curve, we can find the area under the curve that passes through the points . Letting and and integrating over the interval we have
Simpson's Rule builds subintervals of quadratic curves between three points - Vaia Originals
Since the points and are all on the parabola, we can say
Note that
So, we can say that the area under the parabola is
However, when applying Simpson's Rule, we usually use more than just one parabolic curve. Essentially, we end up "integrating" a piecewise quadratic function. So, our area equation becomes
where is the distance between each
Simpson's Rule builds a parabola from a group of three points and sums the area under each parabolic curve to approximate the total area under the curve - Vaia Originals
Simplifying this equation, we get an approximation for the definite integral of a function f(x) called Simpson's Rule, which states
where n is the number of subintervals, , and.
Just like in the Trapezoidal Rule, increasing n will also increase the accuracy of the integral approximation.
Simpson's Rule Error
Unlike the Trapezoidal Rule, where we can determine whether our approximation is an over or underestimate based on the curve's concavity, there are no clear indicators for over or underestimation using Simpson's Rule. However, we can use the relative and absolute errors to find out more about how our estimation compares to the actual value.
Relative error
We compute the error of a Simpson's Rule computation by using the relative error formula:
where is the Simpson's Rule approximation of the integral.
Absolute error
In addition to relative error, the absolute error of our approximation using Simpson's rule can be calculated using the formula for absolute error:
However, as mentioned in The Trapezoidal Rule article, the integral cannot always be computed exactly.
Error Bounds for Simpson's Rule
Like the Trapezoidal Rule, Simpson's Rule has an error-bound formula, which describes the maximum possible error of our approximation. For Simpson's Rule, the error-bound formula is
for
where is the exact error for Simpson's Rule and is the fourth derivative of f(x). K is the fourth derivative's maximum value on the interval .
The use of the error bound will make more sense once we work through some examples.
Advantages and Limitations of Simpson's Rule
Advantages
Simpson's Rule is more accurate than the Trapezoidal Rule
Simpson's Rule is exact for cubic functions (of the form ), quadratic functions, and linear functions
Why is the Simpson's Rule exact for functions of order 3 and less? The fourth derivative of a function of order 3 and less is 0!
Limitations
As three points are required to make a quadratic curve, Simpson's Rule requires an evennumber of subintervals n
Simpson's Rule performs with low accuracy for highly oscillating functions
Examples of Using Simpson's Rule to Estimate the Integral
Example 1
Use Simpson's Rule to estimate the integral with n = 6. Then, find the minimum number of subintervals n to ensure a maximum error of 0.001.
Luckily, the process of Simpson's Rule is very similar to the Trapezoidal Rule.
Step 1: Find
Plugging in our given interval and even number of n subregions:
Step 2: Plug in known values to Simpson's Rule
All we need to do from here is plug our known values into the Simpson's Rule formula. Since our interval is [1, 4] and the problem asks us to use n = 6 subregions, meaning each subregion has a width of units.
id="2859391" role="math"
Notice how the pattern of the coefficients is 1, 4, 2, 4, 2, ..., 2, 4, 1.
Step 3: Consider the maximum error bound
Let's use our error bound formula to see exactly how much of an overestimate our approximation is.
In the error bound formula , our only unknown value is K. However, we can use the fourth derivative of f(x) to find K:
To find K, we have to consider where will reach its maximum value on the interval [1, 4]. We can graph to find the maximum value on the interval.
The 4th derivative of f(x) = 1/(1+x) attains a maximum at f(1) on the interval [1, 4] - Vaia Original
We can see that the fourth derivative reaches its largest value at . Now that all the values ofare known, we can plug in to find our bound.
At most, the error of our estimation is 0.00078.
Step 5: Find a minimum n such that the error is at most 0.001.
Clearly our error for n = 6 is less than 0.001. However, let's find the minimumn necessary to achieve an error of at most 0.001.
We let n be out unknown in our error bound.
We can disregard the second solution, , in this situation because we cannot have a negative amount of subregions. So, to ensure that our error is at most 0.001, we must use at least 6 subregions.
If you end up with an odd number of subregions, you must round up to an even number, as required for the Simpson's rule.
Example 2
Use Simpson's Rule to approximate the area under the curve of f(x) given in the table below with n = 4.
x
-1
0
1
2
3
f(x)
10
8
9
4
1
Step 1: Find
Plugging in our given interval and even number of n subregions:
Step 2: Plug in known values to Simpson's Rule
From here, all we need to do is plug our known values into the Simpson's Rule formula. Since our interval is [-1, 3] and the problem asks us to use n = 4 subregions, meaning each subregion has a width of 1 unit.
Simpson's Rule - Key takeaways
Simpson's Rule is an integral approximation technique that divides the area under the curve into smaller curves and sums the area under each smaller curve to approximate the total area under the curve
For approximating the definite integral of a function f(x), Simpson's Rule states
where n is the number of subintervals, , and
Simpson's Rule builds a quadratic curve out of each sequential subinterval
We can use an error-bound formula to tell us the maximum possible error of our approximation
For Simpson's Rule, the error-bound formula is
for
where is the exact error of Simpson's Rule and is the fourth derivative of f(x)
While Simpson's Rule is more accurate than the Trapezoidal Rule, Simpson's Rule requires an even number of n subregions
Learn faster with the 7 flashcards about Simpson's Rule
Sign up for free to gain access to all our flashcards.
Frequently Asked Questions about Simpson's Rule
What is meant by Simpson's rule?
Simpson's Rule is an integral approximation technique that divides the area under the curve into smaller curves. The area under each smaller curve is added together to obtain an approximation for the total area under the curve.
What is Simpson's rule example and formula?
Simpson's Rule estimates the integral of f(x) on the interval [a, b] is (3((b - a)/n))(f(x0) + 4f(x1) + 2f(x2) + 4f(x3) + 2f(x4) + ... + 2f(xn-2) + 4f(xn-1) + f(xn))
How to find n in simpson's rule?
In Simpson's Rule, n is an even number that represents the number of subintervals used to approximate the integral. If n is not specified, use the error bound formula to find the minimum number of subintervals n to ensure a low error.
Why is simpson's rule more accurate?
Simpson's Rule is more accurate than the Trapezoidal Rule because it uses quadratic equations rather than linear equations to estimate the area of the subinterval.
What is Simpson's rule in calculus?
Simpson's Rule is an integral approximation technique that divides the area under the curve into smaller curves. The area under each smaller curve is added together to obtain an approximation for the total area under the curve.
How we ensure our content is accurate and trustworthy?
At StudySmarter, we have created a learning platform that serves millions of students. Meet
the people who work hard to deliver fact based content as well as making sure it is verified.
Content Creation Process:
Lily Hulatt
Digital Content Specialist
Lily Hulatt is a Digital Content Specialist with over three years of experience in content strategy and curriculum design. She gained her PhD in English Literature from Durham University in 2022, taught in Durham University’s English Studies Department, and has contributed to a number of publications. Lily specialises in English Literature, English Language, History, and Philosophy.
Gabriel Freitas is an AI Engineer with a solid experience in software development, machine learning algorithms, and generative AI, including large language models’ (LLMs) applications. Graduated in Electrical Engineering at the University of São Paulo, he is currently pursuing an MSc in Computer Engineering at the University of Campinas, specializing in machine learning topics. Gabriel has a strong background in software engineering and has worked on projects involving computer vision, embedded AI, and LLM applications.
Vaia is a globally recognized educational technology company, offering a holistic learning platform designed for students of all ages and educational levels. Our platform provides learning support for a wide range of subjects, including STEM, Social Sciences, and Languages and also helps students to successfully master various tests and exams worldwide, such as GCSE, A Level, SAT, ACT, Abitur, and more. We offer an extensive library of learning materials, including interactive flashcards, comprehensive textbook solutions, and detailed explanations. The cutting-edge technology and tools we provide help students create their own learning materials. StudySmarter’s content is not only expert-verified but also regularly updated to ensure accuracy and relevance.
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept
Privacy & Cookies Policy
Privacy Overview
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.