Synthetic division


In algebra, synthetic division is a method for manually performing Euclidean division of polynomials, with less writing and fewer calculations than occur with polynomial long division. It is mostly taught for division by binomials of the form
but the method generalizes to division by any monic polynomial, and to any polynomial.
The advantages of synthetic division are that it allows one to calculate without writing variables, it uses few calculations, and it takes significantly less space on paper than long division. Also, the subtractions in long division are converted to additions by switching the signs at the very beginning, preventing sign errors.
Synthetic division for linear denominators is also called division through Ruffini's rule.

Regular synthetic division

The first example is synthetic division with only a monic linear denominator .
Write the coefficients of the polynomial that is to be divided at the top.
Negate the coefficients of the divisor.
Write in every coefficient of the divisor but the first one on the left.
"Drop" the first coefficient after the bar to the last row.
Multiply the dropped number by the number before the bar, and place it in the next column.
Perform an addition in the next column.
Repeat the previous two steps and the following is obtained:
Count the terms to the left of the bar. Since there is only one, the remainder has degree zero and this is the one right-most term under the bar. Mark the separation with a vertical bar.
The terms are written with increasing degree from right to left beginning with degree zero for both the remainder and the result.
The result of our division is:

Evaluating polynomials by the remainder theorem

The above form of synthetic division is useful in the context of the polynomial remainder theorem for evaluating univariate polynomials. To summarize, the value of at is equal to the remainder of. The advantage of calculating the value this way is that it requires just over half as many multiplication steps as naive evaluation. An alternative evaluation strategy is Horner's method.

Expanded synthetic division

This method generalizes to division by any monic polynomial with only a slight modification with changes in bold. Using the same steps as before, perform the following division:
We concern ourselves only with the coefficients.
Write the coefficients of the polynomial to be divided at the top.
Negate the coefficients of the divisor.
Write in every coefficient but the first one on the left in an upward right diagonal.
Note the change of sign from 1 to −1 and from −3 to 3 . "Drop" the first coefficient after the bar to the last row.
Multiply the dropped number by the diagonal before the bar, and place the resulting entries diagonally to the right from the dropped entry.
Perform an addition in the next column.
Repeat the previous two steps until you would go past the entries at the top with the next diagonal.
Then simply add up any remaining columns.
Count the terms to the left of the bar. Since there are two, the remainder has degree one and this is the two right-most terms under the bar. Mark the separation with a vertical bar.
The terms are written with increasing degree from right to left beginning with degree zero for both the remainder and the result.
The result of our division is:

For non-monic divisors

With a little prodding, the expanded technique may be generalised even further to work for any polynomial, not just monics. The usual way of doing this would be to divide the divisor with its leading coefficient :
then using synthetic division with as the divisor, and then dividing the quotient by a to get the quotient of the original division. But this often produces unsightly fractions which get removed later, and is thus more prone to error. It is possible to do it without first reducing the coefficients of.
As can be observed by first performing long division with such a non-monic divisor, the coefficients of are divided by the leading coefficient of after "dropping", and before multiplying.
Let's illustrate by performing the following division:
A slightly modified table is used:
Note the extra row at the bottom. This is used to write values found by dividing the "dropped" values by the leading coefficient of .
Next, the first coefficient of is dropped as usual:
and then the dropped value is divided by 3 and placed in the row below:
Next, the new value is used to fill the top rows with multiples of 2 and 1, as in the expanded technique:
The 5 is dropped next, with the obligatory adding of the 4 below it, and the answer is divided again:
Then the 3 is used to fill the top rows:
At this point, if, after getting the third sum, we were to try and use it to fill the top rows, we would "fall off" the right side, thus the third sum is the first coefficient of the remainder, as in regular synthetic division. But the values of the remainder are not divided by the leading coefficient of the divisor:
Now we can read off the coefficients of the answer. As in expanded synthetic division, the last two values are the coefficients of the remainder, and the remaining values are the coefficients of the quotient:
and the result is

Compact Expanded Synthetic Division

However, the diagonal format above becomes less space-efficient when the degree of the divisor exceeds half of the degree of the dividend. It is easy to see that we have complete freedom to write each product in any row, as long as it is in the correct column. So the algorithm can be compactified by a greedy strategy, as illustrated in the division below.
The following describes how to perform the algorithm; this algorithm includes steps for dividing non-monic divisors:

Python implementation

The following snippet implements the Extended Synthetic Division for non-monic polynomials :

def extended_synthetic_division:
"""Fast polynomial division by using Extended Synthetic Division.
Also works with non-monic polynomials.
Dividend and divisor are both polynomials, which are here simply lists of coefficients.
E.g.: x**2 + 3*x + 5 will be represented as
"""
out = list # Copy the dividend
normalizer = divisor
for i in range - len:
out /= normalizer # For general polynomial division,
# we need to normalize by dividing the coefficient with the divisor's first coefficient
coef = out
if coef != 0: # Useless to multiply if coef is 0
for j in range: # In synthetic division, we always skip the first coefficient of the divisor,
# because it is only used to normalize the dividend coefficients
out += -divisor * coef
"""
The resulting out contains both the quotient and the remainder, the remainder being the size of the divisor, so we compute the index
where this separation is, and return the quotient and remainder.
"""
separator = 1 - len
return out, out # Return quotient, remainder.