11

How is this done? For example, how would one simplify the following?

$$\frac{x^3-12x^2+0x-42}{x^2-2x+1}$$

I can do it with long division, but it never makes intuitive sense to me. Either an explanation of the long division algorithm or a new way of solving this would be much appreciated.

3 Answers3

14

First step: By which monomial should you multiply $x^2-2x+1$ in order to get some polynomial with the same leading coefficient as $x^3-12x^2-42$? That's easy: $x$. So, now you do$$x^3-12x^2-42-x\times(x^2-2x+1)=-10x^2-x-42.$$Now, the same question: By which monomial should you multiply $x^2-2x+1$ in order to get some polynomial with the same leading coefficient as $-10x^2-x-42$? Now, the answer is $-10$. So, now you do$$-10x^2-x-42-(-10)\times(x^2-2x+1)=-21x-32.$$Now the degree is less than the degree of $x^2-2x+1$ and therefore there's nothing else to do: the quotient is $x-10$ and the remainder is $-21x-32$.

6

The long division algorithm is a way of taking the numerator, and split it into multiples of the denominator, separate those out into their own fractions, and simplify away the denominator. For instance, we have $x(x^2 - 2x+1) = x^3-2x^2+x$, so $$ \frac{x^3 - 12x^2 + 0x-42}{x^2-2x+1} = \frac{(x^3-2x+x) - 10x^2 - 1x-42}{x^2-2x+1}\\ = \frac{x(x^2-2x+1)}{x^2-2x+1} + \frac{-10x^2-1x-42}{x^2-2x+1}\\ = x + \frac{-10x^2-1x-42}{x^2-2x+1} $$ So now we've gotten an $x$, and we're left with a new fraction where the degree of the numerator has gone down by 1 compared to where we started. We can keep going, as long as the degree of the numerator is larger than or equal to the degree of the denominator, which in this case means one more step. This time, we see that $-10(x^2-2x+1) = -10x^2+20x-10$ so $$ \frac{-10x^2-1x-42}{x^2-2x+1} = \frac{(-10x^2+20x - 10) -21x-32}{x^2-2x+1}\\ = -10 + \frac{-21x-32}{x^2-2x+1} $$ At this point the algorithm stops, and we're left with $$ \frac{x^3 - 12x^2 + 0x-42}{x^2-2x+1} = x + \frac{-10x^2-1x-42}{x^2-2x+1} = x -10 + \frac{-21x-32}{x^2-2x+1} $$ This is exactly the long division algorithm, written out with regular fraction notation. If you do the long division algorithm the normal way, you will recognize the different numerators all round, but that technique is designed for ease of calculation, not transparency. So it's difficult to tell what is really going on unless you already know.

Arthur
  • 204,511
-1

$$x^3-12x^2-42=x^3-2x^2+x-10x^2+20x-10-21x-32=$$ $$=(x-10)(x-1)^2-21x-32,$$ which says

$$\frac{x^3-12x^2-42}{(x-1)^2}=x-10+\frac{-21x-32}{(x-1)^2}.$$

  • 1
    This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. - From Review – Arnaud D. Feb 02 '18 at 10:12
  • I don't agree with you. Read please about the long division algorithm. It must help you. Bye. – Michael Rozenberg Feb 02 '18 at 10:19
  • 3
    Or perhaps you could read the question? OP says that they "can do it with long division, but it never makes intuitive sense". Just giving the answer is useless here : what OP wants is an explanation of how long division works in general, not in this specific case. See the other answers for comparison. – Arnaud D. Feb 02 '18 at 10:46
  • I read. The way, which I wrote it's a general way. See the accepted answer. It's the same. – Michael Rozenberg Feb 02 '18 at 10:48