Polynomials and Synthetic Divison

In this post, I want to talk about synthetic polynomial division and why the final value you get is BOTH the y value of the function at a particular point AND the remainder when you perform the division. We’ll use one running example with coefficients a_i, and even though our example will be with a cubic polynomial, the same idea generalizes to polynomials of any degree.

Let’s let f(x) = a_3x^3+a_2x^2+a_1x+a_0, and lets let g(x)=x-c. We want to compute \frac{f(x)}{g(x)}. To do this, we’ll set up synthetic divison as follows.

Inside the box, we put the value that makes the denominator zero. One of the assumptions of synthetic division is that the highest degree on the x term is 1. So, if c is inside the box, we know that we are dividing by x-c.

To the right of the box, we put the coefficients of the polynomial in question (in decreasing order of exponent). If there were a term missing as the powers decreased (like if the polynomial were x^2+1 (no x term)), we would put a zero in that position.

Now, let’s do some synthetic division. This is a combination of two steps: add and multiply. In the first step, we’ll just be bringing down the first constant, but that’s the same as adding zero to the first constant. Here’s the result if you carry out the synthetic division in this example.

The last term in the last column above the horizontal line that’s hard to read is c^3a_3.

The expression in last column of synthetic division below the blue line always gives the remainder of the polynomial division. However, we can ALSO see that this expression (a_0+ca_1+c^2a_2+c^3a_3) is the same as f(c), or the function f evaluated at x=c.

Hang on, that’s pretty cool. The remainder of the polynomial division by (x-c) is the same as y- value of the function at x=c.

Now let’s talk about why the final term being zero when plugging in c corresponds to (x-c) being a factor of f(x). If f(c)=0, then we can write f(x) as a product of two polynomials, f(x)=(x-c)\cdot h(x), where h(x) is some other polynomial (Note that if you evaluate f(c), you’ll get (c-c)\cdot h(c)=0\cdot h(c)=0).

Even if the term you’re dividing by is not a factor of f(x), we see that synthetic division still gives you the $y-$value at that point. Thinking in terms of remainders, this also makes a lot of sense. The remainder after division can be thought of as a measure of how far the denominator was from being a factor of the numerator. If, at x=a, the y-value of the function was 4, then the numerator was 4 more than a multiple of the denominator. In other words, if you subtract 4 from the numerator, it will be divisible by the denominator with no remainder. And, this will have created a polynomial which IS a multiple of the denominator.

Let’s look at an example to make this a little more concrete. Let’s let f(x)=x^3-1, and let’s let g(x)=x-2. Then, the synthetic division will look like this.

The final value in the bottom right is $7$, so this should be the $y-$value of the function at x=2. We can check that f(2)=2^3-1=7. Also, if the remainder is 7, then we should be able to subtract 7 and obtain a multiple of (x-2). Let’s see if that works.

x^3-1-7=x^3-8=(x-2)(x^2+2x+4). Indeed, (x-2) is a factor of that new polynomial!

I hope this helped you see a connection between zeros and factors of polynomials! And how the output of synthetic division relates to the numerator function’s value at a particular point!

Remember to post this on Facebook and tell your friends about it! Also, you can subscribe to posts so you can be the first to read the next one!

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s