askvity

How to do long division method in polynomials?

Published in Polynomial Division 4 mins read

Polynomial long division is a method for dividing one polynomial by another polynomial of equal or lower degree. Here’s a step-by-step guide on how to perform polynomial long division, incorporating insights from the provided reference which demonstrates the process (YouTube reference).

Steps for Polynomial Long Division

  1. Set up the division: Write the dividend (the polynomial being divided) inside the long division symbol and the divisor (the polynomial doing the dividing) outside. Ensure both polynomials are written in descending order of exponents. If any terms are missing (e.g., no x term), include them with a coefficient of 0 as a placeholder.

  2. Divide the first terms: Divide the first term of the dividend by the first term of the divisor. Write the result above the division symbol, aligned with the term in the dividend that has the same degree.

  3. Multiply: Multiply the result from the previous step by the entire divisor. Write the product below the dividend, aligning like terms.

  4. Subtract: Subtract the product from the corresponding terms in the dividend. Remember to change the signs of the terms being subtracted.

  5. Bring down the next term: Bring down the next term of the dividend and write it next to the result of the subtraction.

  6. Repeat: Repeat steps 2-5 until all terms of the dividend have been brought down and divided.

  7. Determine the remainder: If, after bringing down the last term, the degree of the remaining polynomial is less than the degree of the divisor, then that polynomial is the remainder.

Example

Let's consider a simplified example inspired by the YouTube reference. Imagine we're dividing (x2 - x + 1) by (x - 2).

  1. Set up:

             _________
    x - 2 | x^2 - x + 1
  2. Divide the first terms: x2 / x = x. Write 'x' above the -x term.

             x ______
    x - 2 | x^2 - x + 1
  3. Multiply: x * (x - 2) = x2 - 2x. Write this below the dividend.

             x ______
    x - 2 | x^2 - x + 1
           x^2 - 2x
  4. Subtract: (x2 - x) - (x2 - 2x) = x. Remember to change signs and combine like terms.

             x ______
    x - 2 | x^2 - x + 1
           x^2 - 2x
           -------
                x
  5. Bring down the next term: Bring down the '+ 1'.

             x ______
    x - 2 | x^2 - x + 1
           x^2 - 2x
           -------
                x + 1
  6. Repeat: x / x = 1. Write '+ 1' next to the 'x' above.

             x + 1 ___
    x - 2 | x^2 - x + 1
           x^2 - 2x
           -------
                x + 1

    Multiply: 1 * (x - 2) = x - 2.

             x + 1 ___
    x - 2 | x^2 - x + 1
           x^2 - 2x
           -------
                x + 1
                x - 2

    Subtract: (x + 1) - (x - 2) = 3

             x + 1 ___
    x - 2 | x^2 - x + 1
           x^2 - 2x
           -------
                x + 1
                x - 2
                -----
                    3
  7. Remainder: The remainder is 3.

Therefore, (x2 - x + 1) / (x - 2) = x + 1 + (3 / (x - 2)).

Key Considerations

  • Placeholders: Always include placeholders (terms with a coefficient of 0) for any missing terms in the dividend. This maintains proper alignment during the subtraction steps.
  • Sign Changes: Be meticulous with sign changes when subtracting. This is a common area for errors.
  • Organization: Keeping the terms neatly aligned is crucial for avoiding mistakes.

According to the YouTube reference provided, the presenter performs polynomial long division by systematically dividing, multiplying, subtracting, and bringing down terms until the remainder is of a lower degree than the divisor. The presenter underscores the importance of meticulousness, particularly with the signs of numbers when calculating. For example, cancelling -x2 requires multiplying correctly. Combining -8x2 and -x2 yields -9x2.

Related Articles