If the polynomial p ( x ) passes through ( 1 , − 1 ) and ( − 1 , 5 ) , find p ( x ) m o d x 2 − 1 .
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.
My solution is too risky. Haha. Nice solution btw. :)
let p ( x ) = ( a 0 ) ( x n ) + ( a 1 ) ( x n − 1 ) + . . . + ( a n )
p ( 1 ) = − 1 = a 0 + a 1 + . . . + a n (1)
p ( − 1 ) = 5 = − a 0 + a 1 − . . . + a n (2)
or
p ( − 1 ) = 5 = a 0 − a 1 + . . . + a n (3)
by synthetic division,
[ p ( x ) ] m o d ( x 2 − 1 ) = ( a n − 1 + a n − 3 + . . . + a 1 ) x + ( a n + a n − 2 + a n − 4 + . . . + a 0 ) )
( 3 ) + ( 1 )
4 = 2 ( a 0 + a 2 + . . . + a n )
2 = a 0 + a 2 + . . . + a n
( 1 ) − ( 3 )
− 6 = 2 ( a 1 + a 3 + a 5 + . . . + a n − 1 )
− 3 = a 1 + a 3 + a 5 + . . . + a n − 1
t h e r e f o r e ,
[ p ( x ) ] m o d ( x 2 − 1 ) = ( a n − 1 + a n − 3 + . . . + a 1 ) x + ( a n + a n − 2 + a n − 4 + . . . + a 0 ) = − 3 x + 2
Problem Loading...
Note Loading...
Set Loading...
Write p ( x ) = q ( x ) ( x 2 − 1 ) + r ( x ) = q ( x ) ( x 2 − 1 ) + a x + b .
We are told that p ( 1 ) = a + b = − 1 and p ( − 1 ) = − a + b = 5 so a = − 3 and b = 2 .
The remainder is r ( x ) = − 3 x + 2