SlideShare ist ein Scribd-Unternehmen logo
1 von 15
ACTIVE LEARNINGASSIGNMENT PRESENTATION
COMPLEX VARIABLES & NUMERICAL METHODS (2141906)
TOPIC
NUMERICAL INTEGRATION : ERROR FORMULAE,
GAUSSIAN QUADRATURE FORMULAE
PREPARED BY
MECHANICAL – 4B2
DEVANSU KHORASIYA (150120119066)
GUIDED BY
PROF. RAVI PANCHAL
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
INTRODUCTION
What is Numerical Integration?
 In numerical analysis, numerical integration
constitutes a broad family of algorithms for calculating the
numerical value of a definite integral, and by extension,
the term is also sometimes used to describe the numerical
solution of differential equations.
 The basic problem considered by numerical
integration is to compute an approximate solution to a
definite integral. It is different from analytical integration in
two ways: first it is an approximation and will not yield an
exact answer; Error analysis is a very important aspect in
numerical integration. Second it does not produce an
elementary function with which to determine the area
given any arbitrary bounds; it only produces a numerical
value representing an approximation of area.
Let’s Start The Journey…
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
First Of All…
 History of Numerical
Integration The Beginnings Of Numerical Integration Have Its Roots In Antiquity. A Prime
Example Of How Ancient These Methods Are Is The Greek Quadrature Of The
Circle By Means Of Inscribed And Circumscribed Regular Polygons. This
Process Led Archimedes To An Upper Bound And Lower Bound For The Value
Pi. These Methods Were Used Widely Due To The Lack Of Formal Calculus.
 The Method Of The Sum Of An Infinitesimal Area Over A Finite Range Was
Unknown Until The Sixteenth Century When Newton Formalized The Concepts
Of What We Know Now Know As Calculus. The Earliest Forms Of Numerical
Integration Are Similar To That Of The Greek Method Of Inscribing Regular
Polygons Into Curved Functions.
 One could improve accuracy by choosing a better fitting shape. Later methods
decided to improve upon estimating area under a curve decided to use more
polygons but smaller in area. Such an example is the use of rectangles evenly
spaced under a curve to estimate the area. Even further improvements saw the
use oftrapezoids instead of rectangles to better fit the curvature of the function
being analyzed. Today the best methods for numerical integration are known as
quadrature methods that have a very small error.
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
 Elements of Numerical Integration
If f(x) is a smooth well behaved Function, integrated over a small number of
dimensions and the limits of integration are bounded, there are many methods of
approximating the integral with arbitrary precision. We consider an indefinite integral:
Numerical integration methods can generally be described as combining evaluations of
the integrand to get an approximation to the integral.
In this example the definite integral is
thus approximated using areas of
rectangles. The integration points and
weights depend on the specific
method used and the accuracy
required from the approximation. An
important part of the analysis of any
numerical integration method is to
study the behavior of the
approximation error as a function of
the number of integrand evaluations.
𝑎
𝑏
𝑓 𝑥 𝑑𝑥
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
An Easy Method of Numerical Integration: Trapezoid Rule
The Trapezoid Rule calls for the approximation of area under a curve by fitting
trapezoids under the curve and regularly spaced intervals. This method is very common
in beginning calculus courses used as a transition into analytical integration. The
method uses the outputs of the function as the two legs of the trapezoid and the
specified interval is the height. The area of a trapezoid is one half the height multiplied
by the sum of the two bases:
It would be more advantageous to use
more trapezoids of smaller height to better
fit the curvature of the graph. As we
increase the number of trapezoids by
increasing the number of divisions in
the interval, accuracy increases.
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
SIMPSON’S
𝟏
𝟑
RULE
𝒙 𝟎
𝒙 𝟎+𝒏𝒉
𝒇(𝒙)dx =
𝟓
𝟗
[(𝒚 𝟎 + 𝒚 𝒏) + 4(𝒚 𝟏+ 𝒚 𝟑 + ⋯ + 𝒚 𝒏−𝟏 ) + 2((𝒚 𝟐+ 𝒚 𝟒 + ⋯ + 𝒚 𝒏−𝟐 ) ]
SIMPSON’S
𝟑
𝟖
RULE
𝒙 𝟎
𝒙 𝟎+𝒏𝒉
𝒇(𝒙)dx =
𝟑𝒉
𝟖
[(𝒚 𝟎 + 𝒚 𝒏) + 2(𝒚 𝟑+ 𝒚 𝟔 + ⋯ + 𝒚 𝒏−𝟑 ) + 3(𝒚 𝟏 + 𝒚 𝟐 + 𝒚 𝟒 … + 𝒚 𝒏−𝟏 ) ]
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
 Gaussian Quadrature Formulae
An n- Point Gaussian Quadrature Formula is a Quadrature Formula Constructed to give an
Exact Result For Polynomials degree 2n-1 or Less by a Suitable choice of the Points and
Weight 𝑤1for I = 1, 2, 3,….n.
The Gaussian Quadrature Formula is..
−1
1
𝑓(𝑥)dx = 𝑖=1
𝑛
𝑤𝑖f(𝑥𝑖)
One-Point Gaussian Quadrature Formulae
Consider a Function f(x) over the Interval [-1, 1] with Sampling Point 𝑥1. and
Weight 𝑤1 Respectively.
The One Point Gaussian Quadrature Formula is..
−1
1
𝑓(𝑥)dx = 𝑤1f(𝑥1)
For n = 1 We Find Polynomials 2n-1 = 2(1)-1 = 1 and For f(x) = 1 or x…
−𝟏
𝟏
𝒇(𝒙)dx = 2f(0)
𝑥1
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
 Two-Point Gaussian Quadrature Formulae
Consider a Function f(x) over the Interval [-1, 1] with Sampling Points 𝑥1, 𝑥2. and
Weights 𝑤1, 𝑤2 Respectively.
The Two Point Gaussian Quadrature Formula is..
−𝟏
𝟏
𝒇(𝒙)dx = 𝒘 𝟏f(𝒙 𝟏) + 𝒘 𝟐f(𝒙 𝟐)
This Formula Will be Exact for Polynomials of Degree up to 2n-1 = 2(2)-1 = 3, i.e.
It is Exact for f(x)= 1, x, 𝑥2
𝑎𝑛𝑑 𝑥3
.
−𝟏
𝟏
𝒇(𝒙)dx = f(-
𝟏
𝟑
) + f(
𝟏
𝟑
)
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
 Three-Point Gaussian Quadrature Formulae
Consider a Function f(x) over the Interval [-1, 1] with Sampling Points 𝑥1, 𝑥2, 𝑥3. and
Weights 𝑤1, 𝑤2, 𝑤3Respectively.
The Three Point Gaussian Quadrature Formula is..
−𝟏
𝟏
𝒇(𝒙)dx = 𝒘 𝟏f(𝒙 𝟏) + 𝒘 𝟐f(𝒙 𝟐) +𝒘 𝟑f(𝒙 𝟑)
This Formula Will be Exact for Polynomials of Degree up to 2n-1 = 2(3)-1 = 5,
i.e.
It is Exact for f(x)= 1, x, 𝒙 𝟐, 𝒙 𝟑, 𝒙 𝟒 𝒂𝒏𝒅 𝒙 𝟓.
−𝟏
𝟏
𝒇(𝒙)dx =
𝟓
𝟗
f(-
𝟑
𝟓
) +
𝟖
𝟗
f(0) +
𝟓
𝟗
f(
𝟑
𝟓
)
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
EXAMPLE :
−𝟏
𝟏 𝒅𝒙
𝟏+ 𝒙 𝟐 by One Point, Two Point and Three point Gaussian
Formulae.
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
ANY QUESTIONS ???
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
ATTHE LAST…….
One Humble Request to all ofYOU….
Make sureYour House, School, College, Society, Road,
State, Nation, World is Neat and Clean……PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
THANK YOU GUYS FOR LISTINING ME……
PRESENTATION & DESIGNED BY
DEVANSU KHORASIYA
(150120119066)
MYAIM IS….
CLEAN INDIA
GREEN INDIA &
MAKE IN INDIA.
PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Solving linear equation system
Solving linear equation   systemSolving linear equation   system
Solving linear equation system
 
Numerical solution of system of linear equations
Numerical solution of system of linear equationsNumerical solution of system of linear equations
Numerical solution of system of linear equations
 
Numerical method
Numerical methodNumerical method
Numerical method
 
INTEGRATION BY PARTS PPT
INTEGRATION BY PARTS PPT INTEGRATION BY PARTS PPT
INTEGRATION BY PARTS PPT
 
Linear algebra-Basis & Dimension
Linear algebra-Basis & DimensionLinear algebra-Basis & Dimension
Linear algebra-Basis & Dimension
 
Differential equations of first order
Differential equations of first orderDifferential equations of first order
Differential equations of first order
 
Numerical Analysis (Solution of Non-Linear Equations) part 2
Numerical Analysis (Solution of Non-Linear Equations) part 2Numerical Analysis (Solution of Non-Linear Equations) part 2
Numerical Analysis (Solution of Non-Linear Equations) part 2
 
Euler and runge kutta method
Euler and runge kutta methodEuler and runge kutta method
Euler and runge kutta method
 
Fourier series of odd functions with period 2 l
Fourier series of odd functions with period 2 lFourier series of odd functions with period 2 l
Fourier series of odd functions with period 2 l
 
Integral calculus
Integral calculusIntegral calculus
Integral calculus
 
Eigen value and vectors
Eigen value and vectorsEigen value and vectors
Eigen value and vectors
 
Unit1
Unit1Unit1
Unit1
 
linear transformation and rank nullity theorem
linear transformation and rank nullity theorem linear transformation and rank nullity theorem
linear transformation and rank nullity theorem
 
Taylor series
Taylor seriesTaylor series
Taylor series
 
Coordinate geometry
Coordinate geometryCoordinate geometry
Coordinate geometry
 
LU FACTORIZATION METHOD
 LU FACTORIZATION METHOD LU FACTORIZATION METHOD
LU FACTORIZATION METHOD
 
Group Actions
Group ActionsGroup Actions
Group Actions
 
Numerical integration
Numerical integrationNumerical integration
Numerical integration
 
Succesive differntiation
Succesive differntiationSuccesive differntiation
Succesive differntiation
 
Numerical Solution of Diffusion Equation by Finite Difference Method
Numerical Solution of Diffusion Equation by Finite Difference MethodNumerical Solution of Diffusion Equation by Finite Difference Method
Numerical Solution of Diffusion Equation by Finite Difference Method
 

Ähnlich wie NUMERICAL INTEGRATION : ERROR FORMULA, GAUSSIAN QUADRATURE FORMULA

Dealinggreensfncsolft sqrd(10 5-2k16)
Dealinggreensfncsolft   sqrd(10 5-2k16)Dealinggreensfncsolft   sqrd(10 5-2k16)
Dealinggreensfncsolft sqrd(10 5-2k16)
foxtrot jp R
 
Dealinggreensfncsolft sqrd
Dealinggreensfncsolft  sqrdDealinggreensfncsolft  sqrd
Dealinggreensfncsolft sqrd
foxtrot jp R
 

Ähnlich wie NUMERICAL INTEGRATION : ERROR FORMULA, GAUSSIAN QUADRATURE FORMULA (20)

Integration techniques for two dimensional domains
Integration techniques for two dimensional domainsIntegration techniques for two dimensional domains
Integration techniques for two dimensional domains
 
Intro. to computational Physics ch2.pdf
Intro. to computational Physics ch2.pdfIntro. to computational Physics ch2.pdf
Intro. to computational Physics ch2.pdf
 
Fortran chapter 2.pdf
Fortran chapter 2.pdfFortran chapter 2.pdf
Fortran chapter 2.pdf
 
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
 
A New SR1 Formula for Solving Nonlinear Optimization.pptx
A New SR1 Formula for Solving Nonlinear Optimization.pptxA New SR1 Formula for Solving Nonlinear Optimization.pptx
A New SR1 Formula for Solving Nonlinear Optimization.pptx
 
Dealinggreensfncsolft sqrd(10 5-2k16)
Dealinggreensfncsolft   sqrd(10 5-2k16)Dealinggreensfncsolft   sqrd(10 5-2k16)
Dealinggreensfncsolft sqrd(10 5-2k16)
 
Dealinggreensfncsolft sqrdb
Dealinggreensfncsolft sqrdbDealinggreensfncsolft sqrdb
Dealinggreensfncsolft sqrdb
 
Dealinggreensfncsolft
DealinggreensfncsolftDealinggreensfncsolft
Dealinggreensfncsolft
 
HOME ASSIGNMENT (0).pptx
HOME ASSIGNMENT (0).pptxHOME ASSIGNMENT (0).pptx
HOME ASSIGNMENT (0).pptx
 
Symbolic Computation via Gröbner Basis
Symbolic Computation via Gröbner BasisSymbolic Computation via Gröbner Basis
Symbolic Computation via Gröbner Basis
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
Overviewing the techniques of Numerical Integration.pdf
Overviewing the techniques of Numerical Integration.pdfOverviewing the techniques of Numerical Integration.pdf
Overviewing the techniques of Numerical Integration.pdf
 
Taller PII Cabrera_Carlosama_Chavez
Taller PII Cabrera_Carlosama_ChavezTaller PII Cabrera_Carlosama_Chavez
Taller PII Cabrera_Carlosama_Chavez
 
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
 
HOME ASSIGNMENT omar ali.pptx
HOME ASSIGNMENT omar ali.pptxHOME ASSIGNMENT omar ali.pptx
HOME ASSIGNMENT omar ali.pptx
 
Dealinggreensfncsolft sqrd
Dealinggreensfncsolft  sqrdDealinggreensfncsolft  sqrd
Dealinggreensfncsolft sqrd
 
Design of Second Order Digital Differentiator and Integrator Using Forward Di...
Design of Second Order Digital Differentiator and Integrator Using Forward Di...Design of Second Order Digital Differentiator and Integrator Using Forward Di...
Design of Second Order Digital Differentiator and Integrator Using Forward Di...
 
Integrales definidas y método de integración por partes
Integrales definidas y método de integración por partesIntegrales definidas y método de integración por partes
Integrales definidas y método de integración por partes
 
Taller PII Cabrera_Carlosama_Chavez
Taller PII Cabrera_Carlosama_ChavezTaller PII Cabrera_Carlosama_Chavez
Taller PII Cabrera_Carlosama_Chavez
 
International journal of engineering and mathematical modelling vol2 no1_2015_1
International journal of engineering and mathematical modelling vol2 no1_2015_1International journal of engineering and mathematical modelling vol2 no1_2015_1
International journal of engineering and mathematical modelling vol2 no1_2015_1
 

Kürzlich hochgeladen

Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
Epec Engineered Technologies
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 

Kürzlich hochgeladen (20)

Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 

NUMERICAL INTEGRATION : ERROR FORMULA, GAUSSIAN QUADRATURE FORMULA

  • 1. ACTIVE LEARNINGASSIGNMENT PRESENTATION COMPLEX VARIABLES & NUMERICAL METHODS (2141906) TOPIC NUMERICAL INTEGRATION : ERROR FORMULAE, GAUSSIAN QUADRATURE FORMULAE PREPARED BY MECHANICAL – 4B2 DEVANSU KHORASIYA (150120119066) GUIDED BY PROF. RAVI PANCHAL PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 2. INTRODUCTION What is Numerical Integration?  In numerical analysis, numerical integration constitutes a broad family of algorithms for calculating the numerical value of a definite integral, and by extension, the term is also sometimes used to describe the numerical solution of differential equations.  The basic problem considered by numerical integration is to compute an approximate solution to a definite integral. It is different from analytical integration in two ways: first it is an approximation and will not yield an exact answer; Error analysis is a very important aspect in numerical integration. Second it does not produce an elementary function with which to determine the area given any arbitrary bounds; it only produces a numerical value representing an approximation of area. Let’s Start The Journey… PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 3. First Of All…  History of Numerical Integration The Beginnings Of Numerical Integration Have Its Roots In Antiquity. A Prime Example Of How Ancient These Methods Are Is The Greek Quadrature Of The Circle By Means Of Inscribed And Circumscribed Regular Polygons. This Process Led Archimedes To An Upper Bound And Lower Bound For The Value Pi. These Methods Were Used Widely Due To The Lack Of Formal Calculus.  The Method Of The Sum Of An Infinitesimal Area Over A Finite Range Was Unknown Until The Sixteenth Century When Newton Formalized The Concepts Of What We Know Now Know As Calculus. The Earliest Forms Of Numerical Integration Are Similar To That Of The Greek Method Of Inscribing Regular Polygons Into Curved Functions.  One could improve accuracy by choosing a better fitting shape. Later methods decided to improve upon estimating area under a curve decided to use more polygons but smaller in area. Such an example is the use of rectangles evenly spaced under a curve to estimate the area. Even further improvements saw the use oftrapezoids instead of rectangles to better fit the curvature of the function being analyzed. Today the best methods for numerical integration are known as quadrature methods that have a very small error. PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 4. PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 5.  Elements of Numerical Integration If f(x) is a smooth well behaved Function, integrated over a small number of dimensions and the limits of integration are bounded, there are many methods of approximating the integral with arbitrary precision. We consider an indefinite integral: Numerical integration methods can generally be described as combining evaluations of the integrand to get an approximation to the integral. In this example the definite integral is thus approximated using areas of rectangles. The integration points and weights depend on the specific method used and the accuracy required from the approximation. An important part of the analysis of any numerical integration method is to study the behavior of the approximation error as a function of the number of integrand evaluations. 𝑎 𝑏 𝑓 𝑥 𝑑𝑥 PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 6. An Easy Method of Numerical Integration: Trapezoid Rule The Trapezoid Rule calls for the approximation of area under a curve by fitting trapezoids under the curve and regularly spaced intervals. This method is very common in beginning calculus courses used as a transition into analytical integration. The method uses the outputs of the function as the two legs of the trapezoid and the specified interval is the height. The area of a trapezoid is one half the height multiplied by the sum of the two bases: It would be more advantageous to use more trapezoids of smaller height to better fit the curvature of the graph. As we increase the number of trapezoids by increasing the number of divisions in the interval, accuracy increases. PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 7. SIMPSON’S 𝟏 𝟑 RULE 𝒙 𝟎 𝒙 𝟎+𝒏𝒉 𝒇(𝒙)dx = 𝟓 𝟗 [(𝒚 𝟎 + 𝒚 𝒏) + 4(𝒚 𝟏+ 𝒚 𝟑 + ⋯ + 𝒚 𝒏−𝟏 ) + 2((𝒚 𝟐+ 𝒚 𝟒 + ⋯ + 𝒚 𝒏−𝟐 ) ] SIMPSON’S 𝟑 𝟖 RULE 𝒙 𝟎 𝒙 𝟎+𝒏𝒉 𝒇(𝒙)dx = 𝟑𝒉 𝟖 [(𝒚 𝟎 + 𝒚 𝒏) + 2(𝒚 𝟑+ 𝒚 𝟔 + ⋯ + 𝒚 𝒏−𝟑 ) + 3(𝒚 𝟏 + 𝒚 𝟐 + 𝒚 𝟒 … + 𝒚 𝒏−𝟏 ) ] PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 8.  Gaussian Quadrature Formulae An n- Point Gaussian Quadrature Formula is a Quadrature Formula Constructed to give an Exact Result For Polynomials degree 2n-1 or Less by a Suitable choice of the Points and Weight 𝑤1for I = 1, 2, 3,….n. The Gaussian Quadrature Formula is.. −1 1 𝑓(𝑥)dx = 𝑖=1 𝑛 𝑤𝑖f(𝑥𝑖) One-Point Gaussian Quadrature Formulae Consider a Function f(x) over the Interval [-1, 1] with Sampling Point 𝑥1. and Weight 𝑤1 Respectively. The One Point Gaussian Quadrature Formula is.. −1 1 𝑓(𝑥)dx = 𝑤1f(𝑥1) For n = 1 We Find Polynomials 2n-1 = 2(1)-1 = 1 and For f(x) = 1 or x… −𝟏 𝟏 𝒇(𝒙)dx = 2f(0) 𝑥1 PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 9.  Two-Point Gaussian Quadrature Formulae Consider a Function f(x) over the Interval [-1, 1] with Sampling Points 𝑥1, 𝑥2. and Weights 𝑤1, 𝑤2 Respectively. The Two Point Gaussian Quadrature Formula is.. −𝟏 𝟏 𝒇(𝒙)dx = 𝒘 𝟏f(𝒙 𝟏) + 𝒘 𝟐f(𝒙 𝟐) This Formula Will be Exact for Polynomials of Degree up to 2n-1 = 2(2)-1 = 3, i.e. It is Exact for f(x)= 1, x, 𝑥2 𝑎𝑛𝑑 𝑥3 . −𝟏 𝟏 𝒇(𝒙)dx = f(- 𝟏 𝟑 ) + f( 𝟏 𝟑 ) PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 10.  Three-Point Gaussian Quadrature Formulae Consider a Function f(x) over the Interval [-1, 1] with Sampling Points 𝑥1, 𝑥2, 𝑥3. and Weights 𝑤1, 𝑤2, 𝑤3Respectively. The Three Point Gaussian Quadrature Formula is.. −𝟏 𝟏 𝒇(𝒙)dx = 𝒘 𝟏f(𝒙 𝟏) + 𝒘 𝟐f(𝒙 𝟐) +𝒘 𝟑f(𝒙 𝟑) This Formula Will be Exact for Polynomials of Degree up to 2n-1 = 2(3)-1 = 5, i.e. It is Exact for f(x)= 1, x, 𝒙 𝟐, 𝒙 𝟑, 𝒙 𝟒 𝒂𝒏𝒅 𝒙 𝟓. −𝟏 𝟏 𝒇(𝒙)dx = 𝟓 𝟗 f(- 𝟑 𝟓 ) + 𝟖 𝟗 f(0) + 𝟓 𝟗 f( 𝟑 𝟓 ) PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 11. EXAMPLE : −𝟏 𝟏 𝒅𝒙 𝟏+ 𝒙 𝟐 by One Point, Two Point and Three point Gaussian Formulae. PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 12. PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 13. ANY QUESTIONS ??? PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 14. ATTHE LAST……. One Humble Request to all ofYOU…. Make sureYour House, School, College, Society, Road, State, Nation, World is Neat and Clean……PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)
  • 15. THANK YOU GUYS FOR LISTINING ME…… PRESENTATION & DESIGNED BY DEVANSU KHORASIYA (150120119066) MYAIM IS…. CLEAN INDIA GREEN INDIA & MAKE IN INDIA. PREPARED BY : DEVANSU KHORASIYA(GIT-150120119066)