Most valuable coefficient

Algebra Level 5

f ( 15 ) = 125 f ( 16 ) = 150 f ( 17 ) = 210 f ( 18 ) = 275 f ( 19 ) = 365 \begin{aligned} f(15) &=& 125 \\ f(16) &=& 150 \\ f(17) &=& 210 \\ f(18) &=& 275 \\ f(19) &=& 365 \\ \end{aligned}

Let f ( x ) f(x) denote the a 5 th 5^\text{th} degree polynomial with leading coefficient 3 such that it satisfies all the equations above. Find the value of f ( 20 ) f(20) .


The answer is 910.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

We can use the Method of Differences .


The difference table for the polynomial is given above.
D 1 ( x ) = f ( x + 1 ) f ( x ) D_{1}(x) = f(x+1) - f(x)
D 2 ( x ) = D 1 ( x + 1 ) D 1 ( x ) D_{2}(x) = D_{1}(x+1) - D_{1}(x)
D n ( x ) = D n 1 ( x + 1 ) D n 1 ( x ) D_{n}(x) = D_{n-1}(x+1) - D_{n-1}(x)


We know that for a polynomial of degree n, and leading co-efficient a, D n ( x ) D_{n}(x) is a constant and is equal to n ! × a n! \times a .
D 5 ( x ) = 5 ! × 3 = 120 × 3 = 360 \therefore D_{5}(x) = 5! \times 3 = 120 \times 3 = 360
Using this table f ( 20 ) f(20) can be computed.

f ( 20 ) = 360 + 50 + 20 + 25 + 90 + 365 = 910 \therefore f(20) =360 + 50 + 20 + 25 + 90 + 365 = \boxed{910}

did same.....

Dev Sharma - 5 years, 5 months ago

Log in to reply

Did not same.

Lu Chee Ket - 5 years, 5 months ago

Log in to reply

computer science?

Dev Sharma - 5 years, 5 months ago

Log in to reply

@Dev Sharma Not really. Just like answering the question you set last time. Not a better way to this question but it is an alternative. I can have an immediate check to know that I obtained correct coefficients and then I can apply the coefficients to calculate wanted answer with confidence of correctness. Nevertheless, mentioning 5th degree and 1 coefficient with only 5 known points on the graph is necessary.

Lu Chee Ket - 5 years, 5 months ago
Mark Hennings
Dec 24, 2015

We can use Lagrangian interpolation . There is a unique polynomial of degree n 1 n-1 passing through n n specific points (there are n n conditions to be satisfied by the n n coefficients). Lagrangian interpolation gives us a quick method of determining that polynomial.

Define p 15 ( x ) = ( x 16 ) ( x 17 ) ( x 18 ) ( x 19 ) p 16 ( x ) = ( x 15 ) ( x 17 ) ( x 18 ) ( x 19 ) p 17 ( x ) = ( x 15 ) ( x 16 ) ( x 18 ) ( x 19 ) p 18 ( x ) = ( x 15 ) ( x 16 ) ( x 17 ) ( x 19 ) p 19 ( x ) = ( x 15 ) ( x 16 ) ( x 17 ) ( x 18 ) \begin{array}{rcl} p_{15}(x) & = & (x-16)(x-17)(x-18)(x-19) \\ p_{16}(x) & = & (x-15)(x-17)(x-18)(x-19) \\ p_{17}(x) & = & (x-15)(x-16)(x-18)(x-19) \\ p_{18}(x) & = & (x-15)(x-16)(x-17)(x-19) \\ p_{19}(x) & = & (x-15)(x-16)(x-17)(x-18) \end{array} The whole point of these quartic polynomials is that, for example, p 16 ( x ) p_{16}(x) vanishes at 15 , 17 , 18 , 19 15,17,18,19 , but is nonzero at 16 16 . We can use this property to define g ( x ) = 125 p 15 ( 15 ) p 15 ( x ) + 150 p 16 ( 16 ) p 16 ( x ) + 210 p 17 ( 17 ) p 17 ( x ) + 275 p 18 ( 18 ) p 18 ( x ) + 365 p 19 ( 19 ) p 19 ( x ) = 125 24 p 15 ( x ) + 150 6 p 16 ( x ) + 210 4 p 17 ( x ) + 275 6 p 18 ( x ) + 365 24 p 19 ( x ) \begin{array}{rcl} g(x) & = & \dfrac{125}{p_{15}(15)}p_{15}(x) + \dfrac{150}{p_{16}(16)}p_{16}(x) + \dfrac{210}{p_{17}(17)}p_{17}(x) + \dfrac{275}{p_{18}(18)}p_{18}(x) + \dfrac{365}{p_{19}(19)}p_{19}(x) \\ & = & \dfrac{125}{24}p_{15}(x) + \dfrac{150}{-6}p_{16}(x) + \dfrac{210}{4}p_{17}(x) + \dfrac{275}{-6}p_{18}(x) + \dfrac{365}{24}p_{19}(x) \end{array} Then g ( x ) g(x) is the unique polynomial of degree 4 4 taking the values 125 , 150 , 210 , 275 , 365 125,150, 210, 275, 365 at the points 15 , 16 , 17 , 18 , 19 15,16,17,18,19 , and so the quintic polynomial we want is f ( x ) = 3 ( x 15 ) ( x 16 ) ( x 17 ) ( x 18 ) ( x 19 ) + g ( x ) . f(x) \; = \; 3(x - 15)(x-16)(x-17)(x-18)(x-19) + g(x) \;. Thus f ( 20 ) = 3 × 120 + g ( 20 ) = 360 + 125 24 p 15 ( 20 ) 25 p 16 ( 20 ) + 105 2 p 17 ( 20 ) 275 6 p 18 ( 20 ) + 365 24 p 19 ( 20 ) = 360 + 125 24 × 24 25 × 30 + 105 2 × 40 275 6 × 60 + 365 24 × 120 = 910 \begin{array}{rcl} f(20) & = & 3 \times120 + g(20) \\ & = & 360 + \dfrac{125}{24} p_{15}(20) - 25p_{16}(20) + \dfrac{105}{2}p_{17}(20) - \dfrac{275}{6} p_{18}(20) + \dfrac{365}{24}p_{19}(20) \\ & = & 360 + \dfrac{125}{24} \times 24 - 25 \times 30 + \dfrac{105}{2}\times40 - \dfrac{275}{6} \times60 + \dfrac{365}{24}\times120 \\ & = & 910 \end{array} The merit of this method is that it does not require the values 15 , 16 , 17 , 18 , 19 15,16,17,18,19 to be consecutive; the Method of Differences does.

Wow! This method is awesome. Learnt something new today! Thanks!

A Former Brilliant Member - 5 years, 5 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...