Direct Method of Interpolation

Slides:



Advertisements
Similar presentations
Numerical Methods.  Polynomial interpolation involves finding a polynomial of order n that passes through the n+1 points.  Several methods to obtain.
Advertisements

Autar Kaw Humberto Isaza
Newton’s Divided Difference Polynomial Method of Interpolation
Selected from presentations by Jim Ramsay, McGill University, Hongliang Fei, and Brian Quanz Basis Basics.
1 Direct Method of Interpolation Electrical Engineering Majors Authors: Autar Kaw, Jai Paul
Differentiation-Discrete Functions
7/2/ Differentiation-Discrete Functions Industrial Engineering Majors Authors: Autar Kaw, Sri Harsha Garapati.
8/15/ Differentiation-Discrete Functions Major: All Engineering Majors Authors: Autar Kaw, Sri Harsha Garapati.
Major: All Engineering Majors Author(s): Autar Kaw
9/14/ Trapezoidal Rule of Integration Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker
1 Spline Interpolation Method Computer Engineering Majors Authors: Autar Kaw, Jai Paul
10/11/ Differentiation-Discrete Functions Chemical Engineering Majors Authors: Autar Kaw, Sri Harsha Garapati.
1 Interpolation. 2 What is Interpolation ? Given (x 0,y 0 ), (x 1,y 1 ), …… (x n,y n ), find the value of ‘y’ at a.
1 Lagrangian Interpolation Major: All Engineering Majors Authors: Autar Kaw, Jai Paul
1 Newton’s Divided Difference Polynomial Method of Interpolation Chemical Engineering Majors Authors: Autar Kaw, Jai.
Numerical Methods For Slides Thanks to Lecture 6 Interpolation
Quadratic Spline Interpolation Part 1 of 2
1 Newton’s Divided Difference Polynomial Method of Interpolation Major: All Engineering Majors Authors: Autar Kaw,
1 Lagrangian Interpolation Computer Engineering Majors Authors: Autar Kaw, Jai Paul
Computer Programming (TKK-2144) 13/14 Semester 1 Instructor: Rama Oktavian Office Hr.: M.13-15, W Th , F
1 Direct Method of Interpolation Major: All Engineering Majors Authors: Autar Kaw, Jai Paul
1 INTERPOLASI. Direct Method of Interpolation 3 What is Interpolation ? Given (x 0,y 0 ), (x 1,y 1 ), …… (x n,y n ), find the value of ‘y’ at a value.
1 Direct Method of Interpolation Computer Engineering Majors Authors: Autar Kaw, Jai Paul
1 Direct Method of Interpolation Mechanical Engineering Majors Authors: Autar Kaw, Jai Paul
1 Spline Interpolation Method Major: All Engineering Majors Authors: Autar Kaw, Jai Paul
5. Interpolation 5.1 Definition of interpolation. 5.2 Formulas for Interpolation. 5.3 Formulas for Interpolation for unequal interval. 5.4 Applications.
1 Newton’s Divided Difference Polynomial Method of Interpolation Mechanical Engineering Majors Authors: Autar Kaw,
1 Spline Interpolation Method Mechanical Engineering Majors Authors: Autar Kaw, Jai Paul
11/22/ Differentiation-Discrete Functions.
Trapezoidal Rule of Integration
Introduction to Numerical Methods Mathematical Procedures
Solving Equations by Factoring
Interpolation.
Differentiation-Discrete Functions
Differentiation-Discrete Functions
Reading Between the Lines
Major: All Engineering Majors Authors: Autar Kaw, Luke Snyder
Newton’s Divided Difference Polynomial Method of Interpolation
Spline Interpolation Method
Spline Interpolation Method
Central Divided Difference
Spline Interpolation Method
Spline Interpolation Method
Direct Method of Interpolation
Spline Interpolation Method
Lagrangian Interpolation
Civil Engineering Majors Authors: Autar Kaw, Charlie Barker
Newton’s Divided Difference Polynomial Method of Interpolation
Spline Interpolation Method
Lagrangian Interpolation
Lagrangian Interpolation
Opener Perform the indicated operation.
Direct Method of Interpolation
INTERPOLASI.
Why Splines ?
Newton’s Divided Difference Polynomial Method of Interpolation
Forward Divided Difference
Lagrangian Interpolation
Lagrangian Interpolation
Simpson’s 1/3rd Rule of Integration
Direct Method of Interpolation
Electrical Engineering Majors Authors: Autar Kaw, Charlie Barker
Forward Divided Difference
Integrated Math 3 – Mod 3 Test Review
Spline Interpolation Method
Reading Between the Lines
Chemical Engineering Majors Authors: Autar Kaw, Charlie Barker
Differentiation-Discrete Functions
Newton’s Divided Difference Polynomial Method of Interpolation
Lagrangian Interpolation
Presentation transcript:

Direct Method of Interpolation Major: All Engineering Majors Authors: Autar Kaw, Jai Paul http://numericalmethods.eng.usf.edu Numerical Methods for STEM undergraduates http://numericalmethods.eng.usf.edu

What is Interpolation ? Given (x0,y0), (x1,y1), …… (xn,yn), find the value of ‘y’ at a value of ‘x’ that is not given. http://numericalmethods.eng.usf.edu

Velocity vs Time http://numericalmethods.eng.usf.edu

Interpolants Evaluate Differentiate, and Integrate Polynomials are the most common choice of interpolants because they are easy to: Evaluate Differentiate, and Integrate http://numericalmethods.eng.usf.edu

Direct Method Given ‘n+1’ data points (x0,y0), (x1,y1),………….. (xn,yn), pass a polynomial of order ‘n’ through the data as given below: where a0, a1,………………. an are real constants. Set up ‘n+1’ equations to find ‘n+1’ constants. To find the value ‘y’ at a given value of ‘x’, simply substitute the value of ‘x’ in the above polynomial. http://numericalmethods.eng.usf.edu

Example The upward velocity of a rocket is given as a function of time in Table 1. Find the velocity at t=16 seconds using the direct method for linear interpolation. t v(t) s m/s 10 227.04 15 362.78 20 517.35 22.5 602.97 30 901.67 Velocity vs. time data for the rocket example Velocity as a function of time http://numericalmethods.eng.usf.edu

Linear Interpolation Solving the above two equations gives, Hence http://numericalmethods.eng.usf.edu

Example The upward velocity of a rocket is given as a function of time in Table 1. Find the velocity at t=16 seconds using the direct method for quadratic interpolation. t v(t) s m/s 10 227.04 15 362.78 20 517.35 22.5 602.97 30 901.67 Velocity vs. time data for the rocket example Velocity as a function of time http://numericalmethods.eng.usf.edu

Quadratic Interpolation Solving the above three equations gives http://numericalmethods.eng.usf.edu

Quadratic Interpolation (contd) http://numericalmethods.eng.usf.edu

Example The upward velocity of a rocket is given as a function of time in Table 1. Find the velocity at t=16 seconds using the direct method for cubic interpolation. t v(t) s m/s 10 227.04 15 362.78 20 517.35 22.5 602.97 30 901.67 Velocity vs. time data for the rocket example Velocity as a function of time http://numericalmethods.eng.usf.edu

Cubic Interpolation http://numericalmethods.eng.usf.edu

Cubic Interpolation (contd) http://numericalmethods.eng.usf.edu

Comparison Table http://numericalmethods.eng.usf.edu

Distance from Velocity Profile Find the distance covered by the rocket from t=11s to t=16s ? = http://numericalmethods.eng.usf.edu

Acceleration from Velocity Profile Find the acceleration of the rocket at t=16s given that , http://numericalmethods.eng.usf.edu