How does synthetic division produce the results it does?

  • Thread starter Thread starter Eclair_de_XII
  • Start date Start date
  • Tags Tags
    Division
AI Thread Summary
Synthetic division allows for the evaluation of polynomials at specific points by dividing the polynomial by a linear factor derived from that point. When dividing a polynomial like f(x) = x^3 by (x - a), the remainder of this division corresponds to the value of the polynomial at x = a, which is f(a). This is due to the polynomial remainder theorem, which states that the remainder of the division of a polynomial p(x) by (x - a) is p(a). The process of synthetic division simplifies the division while maintaining the relationship between the polynomial and its evaluation at a given input. Understanding this concept is crucial for grasping polynomial behavior and division.
Eclair_de_XII
Messages
1,082
Reaction score
91

Homework Statement


f(x) = x^3
Find f(-2)
f(-2) = -8
The text says that by dividing a function [x^3] by [x minus a given input (-2)] using synthetic division, I'll be able to produce the correct output (-8). I want to know why this happens.

Homework Equations


(x^3)/(x-(-2)) = -8

The Attempt at a Solution


I'm trying to prove that x^3 divided by x minus the input will produce the output. I made it simple enough, but all I manage to do is prove that synthetic division does what it does.

(x^3)/(x+2) = -8 [multiply both sides by (x+2)]
x^3 = -8x - 16 [move right side to left]
x^3 + 8x + 16 [divide whole equation by (x+2)]
(x^3 + 8x + 16)/(x+2) [synthetic division]

-2 1 0 8 16
-2 4 -24
1 -2 4 -8

I still don't know why synthetic division produces an output for a given input when subtracted from x, and becomes the divisor for the original equation. It still ends up with me having to use synthetic division to obtain my result.
 
Physics news on Phys.org
Eclair_de_XII said:

Homework Statement


f(x) = x^3
Find f(-2)
f(-2) = -8
The text says that by dividing a function [x^3] by [x minus a given input (-2)] using synthetic division, I'll be able to produce the correct output (-8). I want to know why this happens.

Homework Equations


(x^3)/(x-(-2)) = -8

The Attempt at a Solution


I'm trying to prove that x^3 divided by x minus the input will produce the output. I made it simple enough, but all I manage to do is prove that synthetic division does what it does.

(x^3)/(x+2) = -8 [multiply both sides by (x+2)]
x^3 = -8x - 16 [move right side to left]
x^3 + 8x + 16 [divide whole equation by (x+2)]
(x^3 + 8x + 16)/(x+2) [synthetic division]

-2 1 0 8 16
-2 4 -24
1 -2 4 -8

I still don't know why synthetic division produces an output for a given input when subtracted from x, and becomes the divisor for the original equation. It still ends up with me having to use synthetic division to obtain my result.

For any polynomial ##p(x)##, ##p(a)## is the remainder when ##p(x)## is divided by ##(x-a)##. The reason is simple: division produces a lower-degree polynomial ##q(x)## such that for all ##x## we have
p(x) = (x-a) q(x) + r
The remainder ##r## has lower degree than the divisor ##x-a## (which is already of degree 1); thus, the remainder is just a number and does not conain ##x## at all---that is, it is a constant. Since the equation holds for all ##x##, just look at what it gives you when you set ##x = a##.
 
  • Like
Likes RUber
Synthetic division is simply "division" with non-necessary parts dropped. For example, to divide x^3- 5x^2+ 7x- 2 by x- 2, I would, as a "trial divisor" note that x will divide into x^3 x^2 times. Multiplying x- 2 by x^2 gives x^3- 2x^2. Subtracting that from x^3- 5x^2+ 7x- 2 leaves a remainder of -3x^2+ 7x- 2. x will divide into -3x^2 -3x times. Multiplying x- 2 by -3x gives -3x^2+ 6x. Subtracting that from -3x^2+ 7x- 2 leaves x- 2 and x- 2 obviously divides into that exactly once. x- 2 divides into x^3- 5x^2+ 7x- 2 exactly x^2- 3x+ 1 times.

Now, for synthetic division, since the powers of x are always in the same order, we don't really need to write those- write the dividend as \begin{array}{cccc}1 & -5 & 7 & -2\end{array}. And we can change those subtractions into additions by changing the sign- instead of "x- 2" we just write the divisor as "2". We have \begin{array} {cccccc} & || 1 & -5 & 7 & -2\end{array}. Bring down that first 1: and multiply the 2 by that: \begin{array} {cccccc}2 & || & 1 & -5 & 7 & -2 \\ & & 2 & & & \\ & & 1 & -3 & & \end{array}. 2 times that -3 is -6 we would next have \begin{array} {cccccc}2 & || & 1 & -5 & 7 & -2 \\ & & & 2 & -6 & \\ & & 1 & -3 & 1 & \end{array}. And 2 times that 1 is 2 so \begin{array} {cccccc}2 & || & 1 & -5 & 7 & -2 \\ & & & 2 & -6 & 2\\ & & 1 & -3 & 1 & 0 \end{array}. That bottom row, "\begin{array}{cccc}1 & -3 & 1 & 0 \end{array}" we interpret as x^2- 3x+ 1.
 
Last edited by a moderator:
Ray Vickson said:
The reason is simple: division produces a lower-degree polynomial q(x)q(x) such that for all xx we have
p(x)=(xa)q(x)+r
p(x) = (x-a) q(x) + r
The remainder rr has lower degree than the divisor xax-a (which is already of degree 1);

I'm sorry; I don't quite understand what you mean by 'lower-degree'. Do you mean like exponents?
 
Eclair_de_XII said:
I'm sorry; I don't quite understand what you mean by 'lower-degree'. Do you mean like exponents?
Yes. For example the degree of x3 - 2x + 1 is 3, which is the degree of the x3 term.
 
So what you're saying is: if a coefficient in a polynomial equation possesses a degree of 0 (that is, x to the power of zero), it is a number all its own; given that anything to the power of zero is one, and anything multiplied by one will not change?

Ray Vickson said:
For any polynomial p(x)p(x), p(a)p(a) is the remainder when p(x)p(x) is divided by (xa)(x-a). The reason is simple: division produces a lower-degree polynomial q(x)q(x) such that for all xx we have
p(x)=(xa)q(x)+r

So is this a basic law, or something?
 
Eclair_de_XII said:
So what you're saying is: if a coefficient in a polynomial equation possesses a degree of 0 (that is, x to the power of zero), it is a number all its own; given that anything to the power of zero is one, and anything multiplied by one will not change?
So is this a basic law, or something?

No. It is the definition of what is meant by "division".

It involves a bit of work to show that the operation of division actually exists (i.e, has "meaning") and produces unique results. You can find out more using Google to search the internet for material on 'division of polynomials'.
 
Ray Vickson said:
It involves a bit of work to show that the operation of division actually exists (i.e, has "meaning") and produces unique results. You can find out more using Google to search the internet for material on 'division of polynomials'.

I might research the former if I have spare time. Thanks for all of your help, guys.
 
Back
Top