USING FINITE DIFFERENCES TO FIND THE DEGREE OF POLYNOMIALS

Finite difference :

The first-order differences of a polynomial function f(x) are found by subtracting function values for equally spaced x-values.

The second-order differences are found by subtracting consecutive first-order differences.

The third-order differences are found by subtracting consecutive second-order differences, and so on.

Use finite differences to determine the degree of the polynomial that best describes the data.

Problem 1 :

finite-differences-deg-poly-q1

Solution:

xy1st difference2nd difference3rd difference4th difference0411414-4=1022424-14=1010-10=033030-24=66-10=-4-4-0=-443030-30=00-6=-6-6+4=-2-2+4=252424-30=-6-6-0=-6-6+6=00+2=2

Since fourth difference are same, it is polynomial of degree 4.

Problem 2 :

finite-differences-deg-poly-q2.png

Solution:

xy1st difference2nd difference3rd difference-270-13535-70=-3501515-35=-20-20+35=15177-15=-8-8+20=1212-15=-3288-7=11+8=99-12=-331515-8=77-1=66-9=-3

Since third difference are same, it is cubic polynomial. The degree of the polynomial is 3.

Problem 3 :

finite-differences-deg-poly-q3.png

Solution:

xy1st difference2nd difference21177-1=601212-7=55-6=-1-11616-12=44-5=-1-21919-16=33-4=-1-32121-19=22-3=-1

Since second difference are same, it is a quadratic polynomial. The degree of the polynomial is 2.

Problem 4 :

finite-differences-deg-poly-q4.png

Solution:

xy1st difference2nd difference3rd difference-6-31-500+31=31-41616-0=1616-31=-15-31919-16=33-16=-13-13+15=2-21111-19=-8-8-3=-11-11+13=2-1-6-6-11=-17-17+8=-9-9+11=2

Since third difference are same, it is cubic polynomial. The degree of the polynomial is 3.

Curve Fitting with Polynomial Models

Carla has been making a "wild scape" in her backyard. The table shows the number of birds visiting her feeder at the same hour

on the first day of each month since she began her project. Use a polynomial model to make a reasonable estimate of the number of birds there might be in July.

finite-differences-deg-poly-q5.png

Problem 5 :

Use finite difference to determine the degree of the polynomial that best fits the data.

a. First differences ______

b. Second differences _____

c. Third differences _____

d. Fourth differences _____

e. Which degree polynomial best describes the data?

Solution:

xy1st difference2nd difference3rd difference13288-3=531818-8=1010-5=543636-18=1818-10=88-5=356565-36=2929-18=1111-8=36108108-65=4343-29=1414-11=3

Since third difference are same, it is cubic polynomial. The degree of the polynomial is 3.

Problem 6 :

Consider this data:

finite-differences-deg-poly-q6.png

a. Calculate finite differences to find the degree of the polynomial function that models these data.

b. What is the minimum number of data points required to determine the degree of this polynomial function? Why?

c. Find the polynomial function that models these data and use it to find s when n is 12.

Solution:

a.

ns1st difference2nd difference11233-1=2366-3=33-2=141010-6=44-3=151515-10=55-4=162121-15=66-5=1

Since second difference are same, it is a quadratic polynomial. The degree of the polynomial is 2.

b.

y = ax2 + bx + c

Put x = 1 and y = 1

1 = a(1)2 + b(1) + c

1 = a + b + c ---> (1)

Put x = 2 and y = 3

3 = a(2)2 + b(2) + c

3 = 4a + 2b + c ---> (2)

Put x = 3 and y = 6

6 = a(3)2 + b(3) + c

6 = 9a + 3b + c ---> (3)

Add (1) & (2),

-3a - b = -2 ---> (4)

Add (1) & (4),

-2a + c = 1 ---> (5)

(2) × 3 ==> 12a + 6b + 3c = 9

(3) × 2 ==> 18a + 6b + 2c = 12

                    _______________

                      -6a + c = -3 ---> (6)

Add (5) & (6),

4a = 4

a = 1

By applying a = 1 in (5)

-2(1) + c = 1

c = 3

By applying a = 1 and c = 3 in (1)

1 + b + 3 = 1

4 + b = 1

b = -3

c. The quadratic polynomial,

s = 1n2 - 3n + 3

When n = 12, s = ?

= 1(12)2 - 3(12) + 3

= 144 - 36 + 3

s = 111

Recent Articles

  1. Finding Range of Values Inequality Problems

    May 21, 24 08:51 PM

    Finding Range of Values Inequality Problems

    Read More

  2. Solving Two Step Inequality Word Problems

    May 21, 24 08:51 AM

    Solving Two Step Inequality Word Problems

    Read More

  3. Exponential Function Context and Data Modeling

    May 20, 24 10:45 PM

    Exponential Function Context and Data Modeling

    Read More