Polynomial Division: Dividend–Divisor–Quotient–Remainder

Division Algorithm for Polynomials

  • Goal: Divide one polynomial f(x) by another polynomial d(x).
  • Result of the division produces two other polynomials:
    • q(x) – the quotient.
    • r(x) – the remainder.
  • Uniqueness: For any given f(x) (dividend) and d(x)\neq0 (divisor), the corresponding q(x) and r(x) are unique.

Standard Division Equality (Two Equivalent Forms)

  • Form 1 (fraction form):
    \frac{f(x)}{d(x)} = q(x) + \frac{r(x)}{d(x)}
    • Interpretation: “Whatever is left over (remainder) is being measured relative to the divisor.”

  • Form 2 (product-plus-remainder form):
    After multiplying both sides of the above by d(x):
    f(x) = d(x)\,q(x) + r(x)
    • This makes the structure crystal clear: dividend = divisor × quotient + remainder.

Degree Condition on the Remainder

  • Essential constraint: \deg\bigl(r(x)\bigr) < \deg\bigl(d(x)\bigr).
  • Why? Ensures that the remainder truly is “smaller” than the divisor in polynomial-degree sense, mirroring numerical long division where the remainder is strictly less than the divisor.

Terminology Recap

  • Dividend: f(x) – the polynomial being divided.
  • Divisor: d(x) – the polynomial we divide by.
  • Quotient: q(x) – the result of the division.
  • Remainder: r(x) – what is left over.

Conceptual Parallel to Integer Division

  • “If these were numbers, you do the same thing.”
    • Example (integers): \frac{17}{5} = 3 + \frac{2}{5} ⟺ 17 = 5\cdot3 + 2 with remainder 2<5.
    • The polynomial version mirrors this exactly, replacing numbers with polynomials and inequality with degree inequality.

Upcoming Procedure (Preview)

  • Instructor promises a “5- or 6-step method” to actually compute q(x) and r(x).
  • This is essentially polynomial long division; steps will break down repeated subtraction of multiples of d(x) just as in arithmetic long division.
  • Practical note: No prior in-depth exposure assumed (many students haven’t seen the formal proof or algorithm in high school).

Key Takeaways So Far

  • Two core equalities to memorize.
  • Remainder-degree condition must always be checked.
  • Names and roles of each component (dividend, divisor, quotient, remainder) should be crystal clear before learning the mechanical algorithm.