5.4 Polynomial Operations, Division & Remainder Theorem
Key Takeaways
- Perform polynomial addition, subtraction, and multiplication using the distributive property, FOIL, and grid methods while carefully tracking signs.
- Understand the Division Algorithm: when polynomial P(x) is divided by divisor D(x), it yields quotient Q(x) and remainder R(x) such that P(x) = D(x) · Q(x) + R(x) or P(x)/D(x) = Q(x) + R(x)/D(x).
- Apply the Polynomial Remainder Theorem: dividing any polynomial P(x) by a linear binomial (x - c) produces a numerical remainder equal to P(c).
- Apply the Factor Theorem: a linear binomial (x - c) is a factor of P(x) if and only if P(c) = 0, which also means x = c is a root/zero of P(x).
- Solve for unknown polynomial coefficients (e.g. finding constant k in P(x)) by substituting x = c into P(c) = Remainder and solving the resulting linear equation.
Polynomial Operations, Division & Remainder Theorem
Polynomials form a central pillar of the Advanced Math domain on the Digital SAT. Questions assess operations on polynomial expressions, dividing polynomials to find quotients and remainders, and utilizing the Polynomial Remainder Theorem and Factor Theorem to solve for unknown coefficients.
1. Polynomial Operations & Algebraic Expansion
A polynomial in one variable $x$ is an algebraic expression composed of terms in the form $a_n x^n + a_{n-1} x^{n-1} + \dots + a_1 x + a_0$, where exponents are non-negative integers and coefficients are real numbers.
Core Operations:
-
Addition & Subtraction: Group and combine like terms (terms with the same variable raised to the exact same power). Always distribute negative signs across parenthetical subtractions:
-
Multiplication (Distributive / Box Method): Multiply every term of the first polynomial by every term of the second polynomial:
+-----------------------------------------------------------------------------+
| BOX METHOD MULTIPLICATION GRID |
| |
| Expression: (2x - 3)(x^2 + 4x - 5) |
| |
| x^2 +4x -5 |
| +---------------+---------------+---------------+ |
| 2x | 2x^3 | +8x^2 | -10x | |
| +---------------+---------------+---------------+ |
| -3 | -3x^2 | -12x | +15 | |
| +---------------+---------------+---------------+ |
| |
| Combine Diagonals: 2x^3 + (8x^2 - 3x^2) + (-10x - 12x) + 15 |
| = 2x^3 + 5x^2 - 22x + 15 |
+-----------------------------------------------------------------------------+
2. Polynomial Long Division & The Division Algorithm
When dividing a higher-degree polynomial $P(x)$ (the dividend) by a divisor $D(x)$, the result yields a quotient polynomial $Q(x)$ and a remainder $R(x)$:
- The degree of remainder $R(x)$ is strictly less than the degree of divisor $D(x)$.
- If divisor $D(x) = ax + b$ (degree 1), the remainder $R$ is a constant number.
Step-by-Step Long Division Example:
Divide $P(x) = 6x^2 + 7x - 5$ by $D(x) = 2x + 1$:
- First Term: Divide $6x^2$ by $2x$ to get $3x$.
- Multiply & Subtract: Multiply $3x(2x + 1) = 6x^2 + 3x$. Subtract: $(6x^2 + 7x) - (6x^2 + 3x) = 4x$.
- Bring Down: Bring down $-5$ to get $4x - 5$.
- Second Term: Divide $4x$ by $2x$ to get $+2$.
- Multiply & Subtract: Multiply $2(2x + 1) = 4x + 2$. Subtract: $(4x - 5) - (4x + 2) = -7$.
- Final Result: Quotient $Q(x) = 3x + 2$, Remainder $R = -7$.
3. The Polynomial Remainder Theorem
Polynomial long division can be time-consuming. When the divisor is a linear expression $(x - c)$, the Polynomial Remainder Theorem calculates the remainder in a single evaluation step:
+-----------------------------------------------------------------------------+
| POLYNOMIAL REMAINDER THEOREM LOGIC |
| |
| Division Identity: P(x) = (x - c) · Q(x) + R |
| |
| Evaluate at x = c: P(c) = (c - c) · Q(c) + R |
| P(c) = 0 · Q(c) + R |
| P(c) = R |
+-----------------------------------------------------------------------------+
Important Divisor Conversions:
- Divided by $(x - 3) \implies c = 3 \implies R = P(3)$
- Divided by $(x + 5) \implies c = -5 \implies R = P(-5)$
- Divided by $(2x - 1) \implies c = \frac{1}{2} \implies R = P(1/2)$
- Divided by $(ax - b) \implies c = \frac{b}{a} \implies R = P(b/a)$
4. The Factor Theorem
The Factor Theorem is the direct corollary of the Remainder Theorem when the remainder equals zero:
If $P(c) = 0$, then:
- $(x - c)$ divides evenly into $P(x)$ with zero remainder.
- $x = c$ is a root / zero of the polynomial equation $P(x) = 0$.
- The point $(c, 0)$ is an $x$-intercept on the graph of $y = P(x)$.
5. Step-by-Step Worked SAT Exam Examples
Worked Example 1: Finding an Unknown Coefficient with Remainder Theorem
Problem: The polynomial $f(x) = 2x^3 - 3x^2 + kx - 8$ is divided by $(x - 2)$. If the remainder is $14$, what is the value of the constant $k$?
Step-by-Step Solution:
- Identify divisor: Divisor is $(x - 2)$, so $c = 2$.
- Apply Remainder Theorem: $f(2) = \text{Remainder} = 14$.
- Substitute $x = 2$ into $f(x)$:
- Simplify numerical terms:
- Solve for $k$:
Worked Example 2: Equating Coefficients in Polynomial Identity
Problem: In the equation $(x - 3)(2x^2 + ax - 4) = 2x^3 + x^2 - 25x + 12$, where $a$ is a constant, what is the value of $a$?
Step-by-Step Solution:
- Expand the left-hand side:
- Equate corresponding coefficients of $x^2$ from both sides:
- Verify with the $x$-coefficient: The $x$-coefficient matches $-25$ exactly, confirming $a = 7$.
6. Desmos Testing Strategies & Remainder Shortcuts
[!TIP] Checking Polynomial Equivalence in Desmos: When an SAT problem asks for the quotient and remainder of $\frac{P(x)}{D(x)}$:
- Type
y = (4x^2 + 6x - 5) / (2x + 1)on line 1.- Type your candidate simplified form
y = 2x + 2 - 7 / (2x + 1)on line 2.- Verify that the two graphs trace the exact same curve across all real values of $x$.
[!NOTE] Evaluating $P(c)$ in Desmos: To calculate remainders for long polynomials rapidly:
- Define
P(x) = 3x^3 - 5x^2 + 9x - 14on line 1.- Type
P(2)on line 2. Desmos will output the remainder immediately without manual arithmetic.
The polynomial $P(x) = 3x^3 - 5x^2 + kx - 14$ is divided by $(x - 2)$. If the remainder of this division is $8$, what is the value of the constant $k$?
Which of the following expressions is equivalent to the rational expression $\frac{4x^2 + 6x - 5}{2x + 1}$ for all $x \ne -\frac{1}{2}$?
If $(x + 3)$ is a factor of the cubic polynomial $f(x) = 2x^3 + 5x^2 - 4x + c$, where $c$ is a constant, what is the value of $c$?