1

Here is a "Math is fun" quote: "When we divide by a polynomial of degree $1$ (such as "$x-3$") the remainder will have degree $0$ (in other words a constant, like "$4$")."

I'm hoping someone could give me intuitive proof of why that is.

2 Answers2

4

When you divide by a number, the remainder should always be less than that number - otherwise, you could "put in" one more:

$27 : 5 = 5\:\mathrm{rem}\:2$, not $4\:\mathrm{rem}\:7$.

Similarly, when you divide by a polynomial, the remainder should always be less (in degree) than your divisor polynom:

$\frac{x^2+3x+1}{x+1}=x+2-\frac{1}{x+1}$, not $x+1+\frac{x}{x+1}$.

When you divide by a polynomial, you eliminate everything of a degree greater than or equal to the degree of you divisor, and leave only what remains (which is less than this degree).

pascalhein
  • 398
  • 4
  • 14
2

When we do Polynomial Long Division, we are actually using Euclidean division algorithm. We are finding $q$ and $r$ such that $$a=bq+r$$ and $$\deg(r)<\deg(b)$$By definition, it is stated that we are only interested in solutions where the divisor has a greater degree, even though other solutions do exist.

Therefore, if $\deg(b)=1$, we have $\deg(r)=0$.

pascalhein
  • 398
  • 4
  • 14