The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 21 Newton-Cotes Integration Formula.

Slides:



Advertisements
Similar presentations
Numerical Integration
Advertisements

ES 240: Scientific and Engineering Computation. Chapter 17: Numerical IntegrationIntegration  Definition –Total area within a region –In mathematical.
NUMERICAL DIFFERENTIATION AND INTEGRATION
Chapter 7 Numerical Differentiation and Integration
Today’s class Romberg integration Gauss quadrature Numerical Methods
Numerical Integration
Chapter 18 Interpolation The Islamic University of Gaza
Numerical Integration Lecture (II)1
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 30 Numerical Integration & Differentiation.
Newton-Cotes Integration Formula
CHAPTER 4 THE DEFINITE INTEGRAL.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 29 Numerical Integration.
The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 22 Integration of Equations.
Numerical Integration Lecture (I)1
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 21 CURVE FITTING Chapter 18 Function Interpolation and Approximation.
Integration of Equations
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Numerical Differentiation and Integration Standing.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 27 Numerical Integration & Differentiation.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 ~ Numerical Differentiation and Integration ~ Newton-Cotes.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Numerical Differentiation and Integration Standing.
Numerical Integration Formulas
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Numerical Differentiation and Integration Part 6 Calculus.
Simpson’s 1/3 rd Rule of Integration. What is Integration? Integration The process of measuring the area under a.
1 NUMERICAL INTEGRATION Motivation: Most such integrals cannot be evaluated explicitly. Many others it is often faster to integrate them numerically rather.
Today’s class Numerical Integration Newton-Cotes Numerical Methods
MECN 3500 Inter - Bayamon Lecture Numerical Methods for Engineering MECN 3500 Professor: Dr. Omar E. Meza Castillo
Lecture 19 - Numerical Integration CVEN 302 July 22, 2002.
Integration Integration: is the total value, or summation, of f(x) dx over the range from a to b:
1 Chapter 7 NUMERICAL INTEGRATION. 2 PRELIMINARIES We use numerical integration when the function f(x) may not be integrable in closed form or even in.
1 Simpson’s 1/3 rd Rule of Integration. 2 What is Integration? Integration The process of measuring the area under a curve. Where: f(x) is the integrand.
Introduction to Numerical Analysis I
CSE 330 : Numerical Methods
Wicomico High School Mrs. J. A. Austin AP Calculus 1 AB Third Marking Term.
1 Trapezoidal Rule of Integration. What is Integration Integration: The process of measuring the area under a function.
Simpson Rule For Integration.
Numerical Methods Part: Simpson Rule For Integration.
Integration Copyright © Cengage Learning. All rights reserved.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Chapter 22.
Trapezoidal Rule of Integration
Section 5.9 Approximate Integration Practice HW from Stewart Textbook (not to hand in) p. 421 # 3 – 15 odd.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 6 - Chapter 21.
Numerical Integration
The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 7 Roots of Polynomials.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 5 Integration and Differentiation.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Chapter 20 Numerical Integration of Functions.
Numerical Integration
Air Force Admin College, Coimbatore
Part 6 - Chapter 21.
Chapter 7 Numerical Differentiation and Integration
Numerical Analysis Lecture 42.
1. 2 What is Integration? Integration The process of measuring the area under a curve. Where: f(x) is the integrand a= lower limit of integration b=
Copyright © Cengage Learning. All rights reserved.
Numerical Integration Formulas
Chapter 22.
NUMERICAL DIFFERENTIATION AND INTEGRATION
Chapter 7 Numerical Differentiation and Integration
Trapezoidal Rule of Integration
Composite Numerical Integration
Copyright © Cengage Learning. All rights reserved.
Simpson’s 1/3rd Rule of Integration
Simpson’s 1/3rd Rule of Integration
SKTN 2393 Numerical Methods for Nuclear Engineers
Simpson’s 1/3rd Rule of Integration
Numerical Integration
Numerical Computation and Optimization
Roots of Polynomials Chapter 7 The Islamic University of Gaza
Numerical Integration
Air Force Admin College, Coimbatore
Presentation transcript:

The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 21 Newton-Cotes Integration Formula

2 Numerical Differentiation and Integration Part 6 Calculus is the mathematics of change. Because engineers must continuously deal with systems and processes that change, calculus is an essential tool of engineering. Standing in the heart of calculus are the mathematical concepts of differentiation and integration:

What is Integration? Integrate means “to bring together”, as parts, into a whole; to indicate total amount. The above stands for integral of function f(x) with respect to the independent variable x between the limits x = a to x = b.

4

What is Integration? Graphically integration is simply to find the area under a certain curve between the 2 integration limits.

Newton-Cotes integration Formulas Introduction The Newton-Cotes formulas are the most common numerical integration methods. They are based on the strategy of replacing a complicated function with an approximating function that is easy to integrate.

1. Trapezoidal Rule The trapezoidal rule uses a polynomial of the first degree to replace the function to be integrated. Trapezoidal rule

Error of the Trapezoidal Rule When we employ the integral under a straight line segment to approximate the integral under a curve, error may be: Where lies somewhere in the interval from a to b.

Trapezoidal Rule Example 21.1 I=

Multiple Trapezoidal Rule One way to improve the accuracy of the trapezoidal rule is to divide the integration interval from a to b into a number of segments and apply the method to each segment. The areas of individual segments can then be added to yield the integral for the entire interval.

Multiple Trapezoidal Rule

Substitute into the integrals for f(x) by f 1 (x) in each segment and integrate :

Multiple Trapezoidal Rule An error for multiple-application trapezoidal rule can be obtained by summing the individual errors for each segment :

Simpson’s Rules More accurate estimate of an integral is obtained if a high-order polynomial is used to connect the points. The formulas that result from taking the integrals under such polynomials are called Simpson’s Rules.

Simpson’s Rules Simpson’s 1/3 Rule Results when a second-order interpolating polynomial is used. Simpson’s 3/8 Rule Results when a third-order (cubic) interpolating polynomial is used.

Simpson’s Rules Simpson’s 1/3 Rule Simpson’s 3/8 Rule

Simpson’s 1/3 Rule

Single segment application of Simpson’s 1/3 rule has a truncation error of: Simpson’s 1/3 rule is more accurate than trapezoidal rule.

The Multiple-Application Simpson’s 1/3 Rule Just as the trapezoidal rule, Simpson’s rule can be improved by dividing the integration interval into a number of segments of equal width.

The Multiple-Application Simpson’s 1/3 Rule

However, it is limited to cases where values are equi-spaced. Further, it is limited to situations where there are an even number of segments and odd number of points

The Multiple-Application Simpson’s 1/3 Rule

Simpson’s 3/8 Rule An odd-segment-even-point formula used in conjunction with the 1/3 rule to permit evaluation of both even and odd numbers of segments. If there are 2 extra points between the integration limits a and b, then a 3 rd degree polynomial can be used instead of the parabola to replace the function to be integrated: Simpson’s 3/8 Rule

Newton Cotes Integration-Example Find the integral of: f ( x ) = x – 200 x x 3 – 900 x x 5 Between the limits 0 to 0.8, f(0) = 0.2, f(0.8) = 0.232, I exact = The trapezoidal rule (ans )

Newton Cotes Integration-Example 2.Multiple trapezoidal rule (n=4) (ans ) f(0)=0.2, f(0.2)=1.288, f(0.4)=2.456, f(0.6)=3.464,f(0.8)=0.232

Newton Cotes Integration-Example 3.The Simpson 1/3 rule (ans ) f(0) = 0.2, f(0.4) = , f(0.8) = 0.232

Newton Cotes Integration-Example 4.Multiple application of Simpson 1/3 rule (n=4) (ans ). f(0)=0.2, f(0.2)=1.288, f(0.4)=2.456, f(0.6)=3.464,f(0.8)=0.232

Newton Cotes Integration-Example 5.The Simpson 3/8 rule (ans ) f(0)=0.2, f(0.2667)= , f(0.5333)= , f(0.8)=0.232

H.W Read Examples; Solve problems;