Interpolation and Curve Fitting

Interpolation and Curve Fitting

3 INTERPOLATION AND CURVE FITTING Introduction Newton Interpolation: Finite Divided Difference Lagrange Interpolation Spline Interpolation Polynomial Regression Multivariable Interpolation Chapter 3 Interpolation & Curve Fitting / 2 3.1 Introduction • Interpolation is a technique to estimate the value between a set of data. • A general approach is to map the data into an n-th order polynomial: n n i fn (x) = a0 + a1x +L+ an x = ∑ ai x (3.1) i=0 • This chapter covers three types of techniques, i.e. the Newton interpolation, the Lagrange interpolation and the Spline interpolation. • The resulting equation can be used for curve fitting. Chapter 3 Interpolation & Curve Fitting / 3 3.2 Newton Interpolation: Finite Divided Difference • For the linear interpolation, consider Fig. 3.1 and the following relation: f1()x − f (x0 ) f (x1 )− f (x0 ) = x − x0 x1 − x0 f(x) f(x1) f(x) f(x0) x0 xx1 x FIGURE 3.1 Linear interpolation Rearranging the above relation leads to f (x1 )− f (x0 ) f1()x = f (x0 )+ ⋅(x − x0 ) (3.2) x1 − x0 The term [f (x1 )(− f x0 )](x1 − x0 ) is referred to as the first-order finite divided difference. Example 3.1 Calculate an approximate value of ln 2 using the linear interpolation using the following ranges: (1,4) and (1,6). Use ln 1 = 0, ln 4 = 1.3862944 and ln 6 = 1.7917595 as the source data. Estimate the relative error if the actual value is ln 2 = 0.69314718. Solution For the linear interpolation between x0 = 1 and x1 = 6: 1.7917595− 0 f ()2 = 0 + ⋅()2 −1 = 0.35835190 1 6 −1 This produces a relative error of εt = 48.3%. Chapter 3 Interpolation & Curve Fitting / 4 For the linear interpolation between x0 = 1 dan x1 = 4: 1.3862944 − 0 f ()2 = 0 + ⋅()2 −1 = 0.46209812 1 4 −1 This produces a relative error of εt = 33.3%, which smaller than the previous case. ` • For the quadratic interpolation, consider Fig. 3.2 and the following relation: y f(x) = ln x 2 1 f1(x) 0 0246x FIGURE 3.2 The result for the linear interpolation for ln 2 f2 ()x = b0 + b1(x − x0 )+ b2 (x − x0 )(x − x1 ) (3.3) By taking the values of x equal to x0, x1 dan x2 in Eq. (3.3), the coefficients bi can be calculated as followed: b0 = f (x0 ) (3.4a) f (x1 )− f (x0 ) b1 = (3.4b) x1 − x0 f ()x − f (x ) f (x )− f (x ) 2 1 − 1 0 x2 − x1 x1 − x0 b2 = (3.4c) x2 − x0 Chapter 3 Interpolation & Curve Fitting / 5 Example 3.2 Repeat Example 3.1 using the quadratic interpolation. Solution From Example 3.1, the data can be rewritten as followed: x0 = 1: f (x0 ) = 0 x1 = 4 : f (x1) = 1.3862944 x2 = 6 : f (x2 ) = 1.7917595 Using Eq. (3.4): b0 = 0 1.3862944 − 0 b = = 0.46209812 1 4 −1 1.7917595 −1.3862944 1.3862944 − 0 − b = 6 − 4 4 −1 = −0.051873113 2 6 −1 Hence, Eq. (3.3) yields f2 (x) = 0 + 0.46209812(x −1)− 0.051873113(x −1)(x − 4) For x = 2: f 2 ()2 = 0 + 0.46209812(2 −1) − 0.051873113(2 −1)(2 − 4), = 0.56584436. This produces the relative error εt = 18.4% as shown below. ` Chapter 3 Interpolation & Curve Fitting / 6 y 2 f(x) = ln x 1 f2(x) f1(x) 0 0246x FIGURE 3.3 The result for the quadratic interpolation for ln 2 • The general form representing an n-th order interpolation function (requires n+1 pairs of data) is: fn ()x = b0 + b1(x − x0 )+L+ bn (x − x0 )(x − x1 )L(x − xn−1 ) (3.5) where the coefficients bi can be obtained via b0 = f (x0 ) b1 = f []x1, x0 b = f x , x , x 2 []2 1 0 M bn = f []xn , xn−1,K, x1, x0 where the terms […] are finite divided differences and are defined as: f (xi )− f (x j ) f []xi , x j = (3.6a) xi − x j f [xi , x j ]− f [x j , xk ] f []xi , x j , xk = (3.6b) xi − xk f [xn , xn−1,K, x2 , x1 ]− f [xn−1, xn−2 ,K, x1, x0 ] f []xn , xn−1,K, x1, x0 = (3.6c) xn − x0 Hence, Eq. (3.5) forms the Newton interpolation polynomial: f n ()x = f (x0 )+ (x − x0 )f [x1, x0 ]+ (x − x0 )(x − x1 ) f [x2 , x1, x0 ] (3.7) +L+ ()x − x0 (x − x1 )L(x − xn−1 ) f [xn , xn−1,K, x0 ] Chapter 3 Interpolation & Curve Fitting / 7 TABLE 3.1 Newton finite divided difference interpolation polynomial ixi f(xi ) I II III 0 x0 f (x0) f [x1,x0] f [x2,x1,x0] f [x3,x2,x1,x0] 1 x1 f (x1) f [x2,x1] f [x3,x2,x1] 2 x2 f (x2) f [x3,x2] 3 x3 f (x3) • The relation for error for the n-th order interpolation function can be estimated using: Rn ≈ f []xn+1, xn , xn−1,K, x0 (x − x0 )(x − x1 )L(x − xn ) (3.8) Example 3.3 Repeat Example 3.1 with an additional fourth point of x3 = 5, f(x3) = 1.6094379 using the third order Newton interpolation polynomial. Solution The third order Newton interpolation polynomial can be written as f3 ()x = b0 + b1(x − x0 )+ b2 (x − x0 )(x − x1 )+ b3 (x − x0 )(x − x1 )(x − x2 ) ixi f(xi ) I II III 0 1 0 0.46209813 −0.0597386 0.00786553 1 4 1.3862944 0.22314355 −0.0204110 2 5 1.6094379 0.18232156 3 6 1.7917595 Thus, f3 ()x = 0 + 0.46209812(x −1) − 0.0597386(x −1)(x − 4) + 0.00786553()x −1 (x − 4)(x − 5), f3 ()2 = 0 + 0.46209812(2 −1) − 0.0597386(2 −1)(2 − 4) + 0.00786553()2 −1 (2 − 4)(2 − 5), = 0.6287691. and producing a relative error of εt = 9.29%. ` Chapter 3 Interpolation & Curve Fitting / 8 y 2 f(x) = ln x 1 f (x) 3 0 0246x TABLE 3.4 The result for the cubic interpolation for ln 2 Chapter 3 Interpolation & Curve Fitting / 9 3.3 Lagrange Interpolation • The formula for the Lagrange interpolation is: n f n ()x = ∑ Li ()x f (xi ) (3.9) i=0 where the parameter Li(x) is defined as n x − x j Li ()x = ∏ (3.10) j=0 xi − x j j≠i • For n = 1, the first order Lagrange interpolation function can be written as: x − x1 x − x0 f1 ()x = f ()x0 + f ()x1 x0 − x1 x1 − x0 • For n = 2, the second order Lagrange interpolation can be written as: ()x − x1 (x − x2 ) (x − x0 )(x − x2 ) f 2 ()x = f ()x0 + f ()x1 ()x0 − x1 (x0 − x2 ) ()x1 − x0 (x1 − x2 ) ()x − x0 (x − x1 ) + f ()x2 ()x2 − x0 (x2 − x1 ) • The error term for the Lagrange interpolation can be estimated using: n Rn = f [xn+1, xn , xn−1,K, x0 ]∏(x − xi ) (3.11) i=0 Example 3.5 Repeat Examples 3.1 and 3.2 using the first and second order Lagrange interpolation functions, respectively. Solution From Examples 3.1: x0 = 1: f (x0 ) = 0 x1 = 4 : f (x1) = 1.3862944 x2 = 6 : f (x2 ) = 1.7917595 Chapter 3 Interpolation & Curve Fitting / 10 For the first order Lagrange interpolation: x − x1 x − x0 f1()x = f ()x0 + f ()x1 x0 − x1 x1 − x0 2 − 4 2 −1 ∴ f ()2 = ()0 + ()1.3862944 1 1− 4 4 −1 = 0.4620981 For the second order Lagrange interpolation: ()x − x1 (x − x2 ) (x − x0 )(x − x2 ) f2 ()x = f ()x0 + f ()x1 ()x0 − x1 (x0 − x2 ) ()x1 − x0 (x1 − x2 ) ()x − x0 (x − x1 ) + f ()x2 ()x2 − x0 (x2 − x1 ) ()2 − 4 (2 − 6) (2 −1)(2 − 6) f (2) = ()0 + ()1.3862944 2 ()1− 4 (1− 6) ()4 −1 (4 − 6) ()2 −1 (2 − 4) + ()1.7917595 ()6 −1 (6 − 4) = 0.5658444 ` Chapter 3 Interpolation & Curve Fitting / 11 3.4 Spline Interpolation • The polynomial interpolation can cause oscillation to the function and this can be remedied by using the spline interpolation. f(x) f(x) x x (a) polynomial (b) Linear spline FIGURE 3.5 Comparison between polynomial and spline interpolation • The formula for the linear spline interpolation for n+1 data between points x0 and xn (n intervals) is f11()x = f (x0 )+ m0 (x − x0 ) untuk x0 ≤ x ≤ x1 f12 ()x = f (x1 )+ m1(x − x1 ) untuk x1 ≤ x ≤ x2 (3.12) M M f1n ()x = f (xn−1 )+ mn−1 (x − xn−1 ) untuk xn−1 ≤ x ≤ xn dengan mi is the gradient for the (i+1)-th interval: f (xi+1 )− f (xi ) mi = (3.13) xi+1 − xi Example 3.6 Use the following data to estimate the function f(x) at x = 5 using the linear spline interpolation. x f(x) 3.0 2.5 4.5 1.0 7.0 2.5 9.0 0.5 Chapter 3 Interpolation & Curve Fitting / 12 Solution The value of x = 5 is in the range 4.5 ≤ x ≤ 7 , where the gradient is 2.5 −1.0 m = = 0.60 1 7.0 − 4.5 From Eq. (3.12): f12 ()x = f (x1 ) + m1(x − x1 ), f12 ()5 = 1.0 + 0.60(5 − 4.5)= 1.3. ` f(x) 2 0 2 4 6 8 x FIGURE 3.6 Linear spline interpolation for Example 3.6 • For the quadratic spline, the general polynomial for each interval is 2 f2i (x) = ai x + bi x + ci (3.14) The coefficient ai, bi and ci for each interval can be evaluated using: 1.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    22 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us