Since
we can perform synthetic division twice, first for
then dividing the result by
again.
... || 1 0 0 0
-1 || -1 1 -1
================
... || 1 -1 1 -1
This translates to
Now divide
by
. (Dividing the remainder term by
can wait until the end.)
... || 1 -1 1
-1 || -1 2
=============
... || 1 -2 3
or equivalently,
Taking everything together, we have
Combine the last two fractions:
which agrees with the solution we found in your other question.
(There's a variant of synthetic division that works with directly dividing a polynomial by another one of any degree, but it's basically just a condensed version of applying the algorithm for dividing a polynomial twice by a linear one, like we've done here.)