I'm trying to understand why polynomial long division works and I've hit a wall when trying to understand why we multiply all terms of the divisor by the partial quotient. Consider:
$$\frac{x^2 + 3x + 2}{x + 2}$$
During the first step we divide ${x^2}$ by ${x}$ giving us a partial quotient of ${x}$. Next, we multiply the partial quotient by the first term of the divisor, giving us ${x^2}$. So far so good, but this next step is what I don't understand: why do we then multiply the next term of the divisor by the partial quotient (i.e. ${x}$ * ${2}$)? It seems as though we're testing to see if ${x}$ can be divided into the first term of the dividend, and if it can, then we distribute the result over the whole divisor which is then subtracted. I don't understand how we can do that when we're only testing the divisibility of those first terms.
I tried a slightly different example to see what happens which highlights what I mean: $$\frac{x^2}{x + 1}$$
First, we test the divisibilty of ${x^2}$ by ${x}$. Obviously it goes ${x}$ times, but then I wanted to see if I could carry on and multiply ${x}$ * ${1}$. I carried on and the quotient becomes ${x + \frac{1}{x + 1} - 1}$. Checking $({x + 1})({x + \frac{1}{x + 1} - 1})$ does give the original dividend of ${x^2}$. Having worked through that problem I just can't see why we're able to do the multiplication of the second term of the divisor, subtract it and get everything to hold true. Essentially, if I subtract ${x^2}$ from ${x^2}$ I end up with nothing. So the second multiplication, to me at least, seems unclear as to why it works and what the purpose is.
I know I'm missing something simple here but I can't seem to make the connection. Could someone explain this to me please?
Now think of 28 as 2*10+8. Same operations hold.I tried something similar so I feel like I'm on the right track, but it's not clicking for me. To keep it simple, I tried 48 / 28, written as (4 * 10 + 8) / (2 * 10 + 8). Working that problem gives me 2 - (8 / 2 * 10 + 8). I can see that it works, but I can also see that we've divided by more than what we originally had. – Jul 22 '12 at 15:44Indeed, when we divide 48 by 28, we ask "how many 28s go into 48 without going over?" We could instead frame long division in such a manner as to say, "how many 28s are necessary to completely cover 48?" This would lead to negative terms. The algorithm would be complex and probably too difficult to teach young students, however.
– Emily Jul 23 '12 at 01:33