Given the following for example:
$$\frac{x^2+x+8}{x+2}$$
The first point of confusion:
The divisor $x + 2$ when performing the division operation, only $x$ is applied. While this works with $x$ dividing $x^2$ fully, if the divisor is $x - 2$ or $x$ is a negative (e.g. $-5 + 2$) than it seems there is a logical problem as this modifies the division scalability relationship of $x$ to $x^2$.
Furthermore, dividing just by $x$ violates my understanding of quotative division in that it is returning how many $x + 2$ overlap with $x^2$. Not how many times just $x$ divides it.
The second point of confusion:
After Division by $x$ the partial quotient is then multiplied by the divisor and subtracted:
$$Divide(Partial-quotient):$$ $$\frac{x^2+x+8}{x+2} = x$$
$$(Confusion) Multiply:$$ $$x(x+2) = (x^2+2x)$$
$$Subtract:$$ $$\frac{x^2+x+8}{x+2} - (x^2 + 2x) = \frac{-x+8}{x+2}$$
Why is the partial quotient multiplied by the constant term 2 in "$x$ + 2" and then the product of 2 is removed? The purpose of subtraction is to eliminate the portion of the dividend $x^2 + x + 8$ that has already been divided. Yet it does not appear the $2$ was involved in the division, so it seems we are removing more than necessary.