This chapter is about - People The process of fitting a polynomial through given data is called...

30

Transcript of This chapter is about - People The process of fitting a polynomial through given data is called...

Page 1: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have
Page 2: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Goal: To fit functions through data.

This chapter is about working with data.

Example: A census of the population of the Us is taken every 10 years.

If we want to know the population of the US in year 1965 or year 2010, we have to fit a function through the given data.

Year Population (in thousands)

1940 132,165

1950 151,326

1960 179,323

1970 203,302

1980 226,542

1990 249,633

Page 3: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Definition: The process of fitting a function through given data is called interpolation.

Usually when we have data, we don’t know the

function f(x) that generated the data. So we fit a certain class of functions.

The most usual class of functions fitted through data are polynomials. We will see why polynomials are fitted through data when we don’t know f(x).

Page 4: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Definition: The process of fitting a polynomial through given data is called polynomial interpolation.

Polynomials are often used because they have the property of approximating any continuous function.

Given: ◦ f(x) continuous on [a,b] ◦ ε>0 (called tolerance) Then, there is a polynomial P(x) of appropriate degree

which approximates the function within the given tolerance.

Page 5: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Theorem: (Weierstrass Approximation Theorem): Suppose that f(x) is defined and continuous on [a,b]. For each ε>0, there exists a polynomial P(x) with the property

|f(x)-P(x)|<ε

for all x in [a,b]. f(x) in red approximated by P(x) in blue within ε.

This fact is guaranteed by the following Theorem:

Page 6: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have
Page 7: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Polynomial of degree n has n+1 coefficients, that is n+1 unknowns to determine. We have n+1 conditions given.

Problem: Given the values of the function f(x) at n+1 distinct points

x0 x1 x2, …, xn

f0 f1 f2,...., fn

where fi = f(xi) for i=0,…,n.

Find a polynomial of degree n, P(x), such that

P(xi)=fi, i=0,…,n

01...)( axaxaxP n

n

Page 8: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

When n=2, the problem becomes: Given:

x0 x1

f0 f1

Find a polynomial of degree one such that P(x0)=f0 P(x1)=f1

01

01

10

10

01

00100

01

010 )()(

xx

xxf

xx

xxf

xx

xxfffxx

xx

fffy

Page 9: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Denote by L0(x) and L1(x) the two first degree polynomials:

These polynomials have the following properties:

L0(x0)=1 L0(x1)=0

L1(x0)=0 L1(x1)=1

So we can rewrite the polynomial that fits the data in the form:

P(x) = f0L0(x) + f1L1(x)

10

10 )(

xx

xxxL

01

01 )(

xx

xxxL

Page 10: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

P(x0)=f0L0(x0)+f1L1(x1)= f0

P(x1)=f0L0(x1)+f1L1(x1) = f1

L0(x0)=1, L0(x1)=0

L1(x0)=0, L1(x1)=1

Note: P(x) is the unique linear polynomial passing through the points (x0,f0) and (x1,f1)

Page 11: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Now we generalize the approach to n+1 points.

Given: ◦ x0,x1,x2,…,xn

◦ f0, f1, f2,...,fn

First we construct the special polynomials Lk(x) so that they have the properties: ◦ Lk(xi)=0 if i≠k ◦ Lk(xk)=1

These are polynomials that are zero at all points except one.

Page 12: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

A polynomial of degree n which is zero at all points except xk is given by ◦ (x-x0)(x-x1)…(x-xk-1)(x-xk+1)…(x-xn)

If we want that polynomial to have value one at xk we must divide by its value at xk. Thus,

Lk(x) is called basic Lagrange polynomial of degree n.

))...()()...((

))...()()...(()(

110

110

nkkkkkk

nkkk

xxxxxxxx

xxxxxxxxxL

Page 13: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Then P(x) =f0L0(x)+f1L1(x)+…fnLn(x)

We would have P(xk)=fk for k=0,…,n.

Definition: P(x) is called the nth Lagrange interpolating polynomial.

Example: Find the appropriate Lagrange interpolating polynomial using the table:

x 0 0.5 1 1.5

f(x) 1 2 3 4

Page 14: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

P(x)

=L0(x)+2L1(x)+3L2(x)+4L3(x)

We have 4 points, so the Lagrange polynomial will be of degree 3.

The basic Lagrange polynomials are:

)15.1)(5.05.1(5.1

)1)(5.0()(

)5.11)(5.01(1

)5.1)(5.0()(

)5.15.0)(15.0(5.0

)5.1)(1()(

)5.10)(10)(5.00(

)5.1)(1)(5.0()(

3

2

1

0

xxxxL

xxxxL

xxxxL

xxxxL

Page 15: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

If we replace the function f(x) with the polynomial P(x), we would like to know what error we are making.

Definition: The error En(x,f) = f(x) – P(x)

The error varies from point to point. In the interpolation points the error is zero but it is non-zero in other points.

We will be most interested in the maximum of the |En(x,f)| over the interval [a,b]. This maximum is called error bound.

Page 16: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Theorem 3.3: Suppose x0,x1,…,xn are n+1 distinct points in the interval [a,b] and f(x) has n+1 continuous derivatives. Then, for each x in [a,b], a number ξ(x) in (a,b) exists with

where P(x) is the nth Lagrange interpolating

polynomial.

))...(()!1(

))(()()( 0

)1(

n

n

xxxxn

xfxPxf

Page 17: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Definition: The error is given by the formula:

Note: ◦ If the interval [a,b] is not given, we take

[a,b]=[x0,xn].

◦ We need the function f(x) in order to be able to compute an error bound.

))...(()!1(

))((),( 0

)1(

n

n

n xxxxn

xffxE

Page 18: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Example: For the function

f(x)=cos(x)

let x0=0, x1=0.6, x2=0.9. ◦ Construct the interpolation polynomial of degree at

most two to approximate f(0.45).

◦ Find the actual error at 0.45.

◦ Use Theorem 3.3 to find the error bound for the error.

Page 19: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

P(x)=L0(x)+cos(0.6)L1(x) +cos(0.9)L2(x) Plot of f(x) and P(x).

The basic Lagrange polynomials are:

)6.09.0(9.0

)6.0()(

)9.06.0(6.0

)9.0()(

)9.00)(6.00(

)9.0)(6.0()(

2

1

0

xxxL

xxxL

xxxL

Page 20: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Plot of the error.

P(0.45)=0.898100747

cos(0.45) = 0.9004471024

Actual error at x=0.45:

cos(0.45)-P(0.45)≈0.0023

Error bound:

We want to compute

maxx|E2(x,f)|

)9.0)(6.0(!3

))(('''),(2 xxx

xffxE

Page 21: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

We can see from the figure that

maxx|E2(x,f)|≤0.4

However, we will not be able to compute this best bound because we don’t know the location of ξ.

We will bound the error in 2 steps: ◦ Find

◦ Find

|)('''|max xfbxa

|)9.0)(6.0(|max

xxxbxa

Page 22: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Computing

Computing derivatives:

f(x) = cos x

f’(x) = -sin x

f’’(x) =-cos x

f’’’(x)=sin x

|sin(x)| is increasing over [0,0.9]. Hence:

|)('''|max xfbxa

|)9.0sin(||)sin(|max

xbxa

Page 23: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

|g(x)|≤|g(p1)|=0.05704 |g(p2)|=0.0170405184

Computing

g(x)=x(x-0.6)(x-0.9)

p1=0.2354248689

p2=0.7645751311

|)9.0)(6.0(|max

xxxbxa

0)18.0(3)(' 2 xxxg

Page 24: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

We put together the two estimates:

0074468.005704.06

|9.0sin|

|)9.0)(6.0(|6

|))(sin(||),(| 2

xxxx

fxE

Page 25: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Construct the Lagrange interpolating polynomial of degree 2 for

f(x)=sin(lnx)

on the interval [2,2.6] with the points

x0=2.0 x1=2.4 x2=2.6.

Find a bound for the absolute error.

Thus, the following table is given:

x 2 2.4 2.6

f(x) sin(ln2) sin(ln2.4) sin(ln2.6)

Page 26: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

P(x)=sin(ln2)L0(x)+sin(ln2.4)L1(x)+sin(ln2.6)L2(x)

We construct the basic Lagrange polynomials:

)4.26.2)(26.2(

)4.2)(2()(

)6.24.2)(24.2(

)6.2)(2()(

)6.22)(4.22(

)6.2)(4.2()(

2

1

0

xxxL

xxxL

xxxL

Page 27: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Plot of the error f(x)-P(x)

The error is given by

f(x)=sin(lnx))

)6.2)(4.2)(2(!3

))(('''),(2 xxx

xffxE

3

)cos(ln)sin(ln3)('''

x

xxxf

Page 28: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

f’’’(x) plotted over the interval [2,2.6].

Bounding the third derivative:

|f’’’(x)| is plotted on the right. |f’’’(x)| is decreasing. The maximum is at 2:

335765.08

)2cos(ln)2sin(ln3

|)2('''||)('''|max6.22

fxfx

Page 29: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

|g(x)|≤|g(2.157)|=0.0169

|g(2.5)|=0.005 Plot of g(x).

Next we bound |g(x)|:

g(x)=(x-2)(x-2.4)(x-2.6)

To find the maximum of |g(x)|, we need to take the derivative:

p1=2.157

p2=2.5

024.16143)(' 2 xxxg

Page 30: This chapter is about - People The process of fitting a polynomial through given data is called polynomial interpolation. Polynomials are often used because they have

Obtaining the error bound:

4

2

10*457.90169.06

335765.0

|)6.2)(4.2)(2(|!3

|))(('''||),(|

xxxxf

fxE