UNLOCK YOUR CHILD'S
POTENTIAL AND CREATIVITY
WITH A FREE TRIAL CLASS
DEVELOP TECHNICAL, SOFT, &
ENTREPRENEURIAL SKILLS
AGE 7-16 YEARS
BOOK A FREE TRIAL
Select Your Subject of Choice

    Please enter name

    Please enter email

    Existing knowledge in programming/robotics

    Please select date

    Please select time

    Terms and Conditions.

    Please accept the Terms and Conditions.

    *No credit card required.

    How to do Synthetic Division?

    |

    Synthetic division is a shorthand method for dividing polynomials by linear factors of the form (x − c). It replaces the variables and exponents used in traditional algebraic long division with a streamlined process of multiplying and adding numbers.

    To perform synthetic division, first set the linear divisor (x − c) to zero to find the root c. Next, list the polynomial's coefficients in descending order of degree. Drop the leading coefficient down, then repeat the process of multiplying by c and adding the results in columns.

    When Can You Use Synthetic Division?

    Synthetic division can be used when dividing a polynomial by a linear factor of the form \(x-c\) for some constant \(c\). This is especially helpful for a fast determination of the quotient and the remainder without having to perform traditional polynomial long division. Synthetic division is a method that can be used to evaluate polynomials, to check if a number is a root, and to factor polynomials when one linear factor is known. Synthetic division is highly efficient, but it comes with one strict rule: the divisor must be a first-degree linear polynomial, such as x − 3 or x + 5.

    Allowed Divisors:

    • x − 4
    • x + 2
    • x − ½

    Not Allowed:

    • x² + 1
    • x³ − 2x

    For non-linear divisors, use standard polynomial long division.

    How to Do Synthetic Division Step-by-Step

    To divide a polynomial P(x) by (x - c), follow this 5-step process:

    1. Find the Root (c): Set your divisor equal to zero. If your divisor is (x - k), your multiplier is k. If your divisor is (x + k), your multiplier is -k.
    2. Set Up the Coefficients: Write the coefficients of the dividend polynomial in order of decreasing degree. Important: Insert a 0 placeholder for any missing terms (e.g., if is missing, write 0).
    3. Drop the First Coefficient: Bring the very first coefficient straight down below the horizontal division line.
    4. Multiply and Add:
      • Multiply the number below the line by your root c.
      • Place the result in the next column under the polynomial coefficient.
      • Add the numbers in that column together and write the sum below the line.
    5. Write the Final Polynomial: The numbers under the line represent the quotient coefficients. The last number on the far right is the remainder. The degree of the quotient polynomial will always be one degree less than the original polynomial.

    Synthetic Division Examples

    Example 1: Standard Division (No Remainder)

    Problem: Divide 2x3 − 6x2 + 2x − 6 by x − 3.

    Step 1: Set up the root and coefficients

    Divisor: x − 3 = 0  ⇒  c = 3

    Coefficients: 2, −6, 2, −6

    3 2 −6 2 −6
    6 0 6
    2 0 2 0

    Step 2: Perform the operations

    1. Drop down the 2.
    2. Multiply 3 × 2 = 6. Write 6 under −6 and add: −6 + 6 = 0.
    3. Multiply 3 × 0 = 0. Write 0 under 2 and add: 2 + 0 = 2.
    4. Multiply 3 × 2 = 6. Write 6 under −6 and add: −6 + 6 = 0.

    Final Answer

    The bottom row yields 2, 0, 2 with a remainder of 0. Since the original degree was 3, the quotient starts at degree 2.

    Quotient = 2x2 + 2

    Example 2: Missing Terms & Non-Zero Remainder

    Problem: Divide x4 − 10x2 − 2 by x + 3.

    Step 1: Set up with zero placeholders

    Divisor: x + 3 = 0  ⇒  c = −3

    Notice that x3 and x are missing. Therefore, use zero placeholders.

    Coefficients: 1, 0, −10, 0, −2

    −3 1 0 −10 0 −2
    −3 9 3 −9
    1 −3 −1 3 −11

    Step 2: Perform the operations

    1. Drop down 1.
    2. −3 × 1 = −3 ⇒ 0 + (−3) = −3.
    3. −3 × (−3) = 9 ⇒ −10 + 9 = −1.
    4. −3 × (−1) = 3 ⇒ 0 + 3 = 3.
    5. −3 × 3 = −9 ⇒ −2 + (−9) = −11.

    Final Answer

    The quotient coefficients are 1, −3, −1, 3, with a remainder of −11.

    Quotient = x3 − 3x2 − x + 3

    Final result = x3 − 3x2 − x + 3 − 11/(x + 3)

    How a Synthetic Division Calculator Works

    A synthetic division calculator automates this linear algebra routine using an array structure. When using an online calculator tool or programming your own solver:

    1. The algorithm parses the input string into a coefficient array: [an, an-1, …, a0] .
    2. It detects missing indices between the highest exponent n and 0, padding them with 0.
    3. It iterates through an accumulator loop:
      accum[0] = an
      accum[i] = an-i + (c × accum[i-1])
    4. The output displays the quotient array and highlights the final term accum[n] as the remainder.

    Conclusion

    Synthetic division is a fast shortcut for dividing a polynomial by a linear factor like xcx-c. If the coefficients are properly ordered, you can find the quotient and remainder with fewer calculations. Bring down the first coefficient and repeat the multiply-and-add steps. The polynomial should be written as p(x)=2x5+0x4+3x3+0x2+0x+cp(x) = -2x^5 + 0x^4 + 3x^3 + 0x^2 + 0x + c where cc is any real number. Synthetic division is an easy way to solve polynomial division problems and check polynomial roots. Regular practice is recommended.

    You can opt for our Advanced Math or Vedic Math+Mental Math courses. Our Math Quiz for grades 3rd, 4th, 5th, and 6th helps in further exciting and engaging in mathematics with hands-on lessons.

    Frequently Asked Questions

    What is the synthetic division remainder theorem?

    The Remainder Theorem states that if a polynomial P(x) is divided by (x - c), the remainder of the division is equal to P(c).

    Synthetic division provides a fast way to evaluate complex polynomials at x = c without direct exponent substitution.

    How do you handle a divisor with a leading coefficient like (2x - 1)?

    If the divisor has a coefficient before x, rewrite it by factoring out the coefficient. For example, convert (2x - 1) to 2(x - 1/2).

    Perform synthetic division using c = 1/2, then divide the resulting quotient terms by 2.

    Why did I get the wrong answer using synthetic division?

    The two most common errors in synthetic division of polynomials are:

    1. Forgetting to insert a 0 coefficient for missing variable powers.
    2. Using the wrong sign for c. For example, use -3, not +3, when dividing by x + 3.
    Moonpreneur

    Moonpreneur

    Moonpreneur is an ed-tech company that imparts tech entrepreneurship to children aged 6 to 15. Its flagship offering, the Innovator Program, offers students a holistic learning experience that blends Technical Skills, Power Skills, and Entrepreneurial Skills with streams such as Robotics, Game Development, App Development, Advanced Math, Scratch Coding, and Book Writing & Publishing.
    Subscribe
    Notify of
    guest

    0 Comments
    Inline Feedbacks
    View all comments

    RELATED ARTICALS

    Explore by Category

    MOST POPULAR

    GIVE A GIFT OF $10
    MINECRAFT GIFT
    TO YOUR CHILD

    JOIN A FREE TRIAL CLASS

    FREE PRINTABLE MATH WORKSHEETS

    DOWNLOAD 3rd GRADE MATH WORKSHEET
    Download Now

    DOWNLOAD 4rd GRADE MATH WORKSHEET
    Download Now

    DOWNLOAD 5rd GRADE MATH WORKSHEET
    Download Now

    DOWNLOAD 4rd GRADE MATH WORKSHEET
    Download Now

    MATH QUIZ FOR KIDS - TEST YOUR KNOWLEDGE

    MATH QUIZ FOR GRADE 3

    Start The Quiz

    MATH QUIZ FOR GRADE 4

    Start The Quiz

    MATH QUIZ FOR GRADE 5

    Start The Quiz

    MATH QUIZ FOR GRADE 6

    Start The Quiz