7.1 Polynomial Operations: Addition, Subtraction, & Multiplication
Key Takeaways
- Polynomials are algebraic expressions combining constants, variables, and non-negative integer exponents, classified by term count (monomial, binomial, trinomial) and degree (the highest exponent sum in a term).
- Writing polynomials in standard form arranges terms in descending order of exponent degree, establishing the leading term and leading coefficient at the front.
- Adding and subtracting polynomials relies on combining like terms (identical variables and powers); polynomial subtraction strictly requires distributing a factor of -1 to every term inside the subtracted expression before combining.
- Multiplying polynomials applies the exponent product rule ($x^a \cdot x^b = x^{a+b}$), employing FOIL or the geometric area model for binomials, special product identities (Difference of Squares and Perfect Square Trinomials), and multi-term distribution.
7.1 Polynomial Operations: Addition, Subtraction, & Multiplication
Polynomials serve as the fundamental language for modeling non-linear relationships across algebra, physics, geometry, and workplace mathematics. On TABE 13&14 Mathematics Levels D and A, mastering polynomial operations—classifying expressions, adding, subtracting, and expanding multi-term products—is essential for solving complex algebraic equations and evaluating real-world geometric and physical models.
1. Polynomial Anatomy, Terminology, & Standard Form
A polynomial is an algebraic expression consisting of one or more terms added or subtracted together, where each term is a constant, a variable, or the product of a numerical coefficient and one or more variables raised strictly to whole-number (non-negative integer) exponents ($0, 1, 2, 3, \dots$).
Essential Polynomial Definitions
- Term: A single number, variable, or product of numbers and variables separated by $+$ or $-$ signs.
- Coefficient: The numerical multiplier of a variable term (in $-7x^2$, the coefficient is $-7$).
- Constant: A term containing no variable (its degree is $0$, such as $-9$).
- Degree of a Term: The sum of the exponents of all variables in that specific term (e.g., $5x^3$ has degree $3$; $4x^2y^3$ has degree $2 + 3 = 5$; the constant $8$ has degree $0$).
- Degree of a Polynomial: The highest degree among all of its non-zero individual terms.
Non-Polynomial Expressions to Recognize
An algebraic expression is NOT a polynomial if it contains:
- Negative exponents: $3x^{-2} = \frac{3}{x^2}$ (violates non-negative integer requirement).
- Fractional exponents / Radicals on variables: $4x^{1/2} = 4\sqrt{x}$.
- Variables in denominators: $\frac{5}{x + 1}$.
Classification by Number of Terms & Degree
| Classification by Terms | Number of Terms | Example | Degree Name | Degree Value | Example Standard Form |
|---|---|---|---|---|---|
| Monomial | 1 | $7x^4$ | Constant | 0 | $8$ |
| Binomial | 2 | $3x^2 - 5$ | Linear | 1 | $4x - 7$ |
| Trinomial | 3 | $2x^2 + 5x - 4$ | Quadratic | 2 | $3x^2 + 2x - 5$ |
| Polynomial | 4+ | $x^4 - 2x^3 + 5x - 1$ | Cubic / Quartic | 3 / 4 | $2x^3 - x^2 + 6x - 9$ |
Standard Form of a Polynomial
A polynomial in one variable is written in standard form when its terms are arranged in strictly descending order of exponent degree (from highest exponent to lowest exponent):
- Leading Term: The term with the highest degree ($a_n x^n$).
- Leading Coefficient: The coefficient of the leading term ($a_n$).
Example: Rewrite $7x - 4x^3 + 8 + 5x^2$ in standard form.
- Standard Form: $-4x^3 + 5x^2 + 7x + 8$
- Degree: $3$ (Cubic); Leading Term: $-4x^3$; Leading Coefficient: $-4$; Constant: $8$.
2. Adding and Subtracting Polynomials
Adding and subtracting polynomials is rooted in identifying and combining like terms—terms that contain identical variable bases raised to identical exponential powers. When combining like terms, add or subtract the numerical coefficients while keeping the variable base and exponent unchanged ($3x^2 + 5x^2 = 8x^2$, not $8x^4$).
Addition of Polynomials
Polynomial addition can be performed using either the horizontal grouping method or the vertical column alignment method.
Worked Example (Horizontal Method):
\text{Group Like Terms:} &\quad (5x^3 + 2x^3) + (-4x^2 + 6x^2) + (7x - 9x) + (-3 + 11) \\ \text{Combine Coefficients:} &\quad (5+2)x^3 + (-4+6)x^2 + (7-9)x + (-3+11) \\ \text{Final Standard Form:} &\quad 7x^3 + 2x^2 - 2x + 8 \end{aligned}$$ ### Subtraction of Polynomials & The Negative Distribution Rule > [!CAUTION] > **THE SUBTRACTION DISTRIBUTION TRAP:** > Subtracting a polynomial requires subtracting **every single term** inside the parentheses. You must distribute a factor of $-1$ to each term in the subtrahend, inverting all internal signs, before combining like terms: > $$(A) - (B + C - D) = A - B - C + D$$ **Worked Example (Vertical Column Method):** Subtract $(3x^3 - 8x^2 + 4x - 6)$ from $(7x^3 - 2x^2 - 5x + 9)$. $$\begin{aligned} \text{Set up subtraction:} &\quad (7x^3 - 2x^2 - 5x + 9) - (3x^3 - 8x^2 + 4x - 6) \\ \text{Distribute } -1: &\quad (7x^3 - 2x^2 - 5x + 9) + (-3x^3 + 8x^2 - 4x + 6) \end{aligned}$$ ```text Vertical Alignment: 7x^3 - 2x^2 - 5x + 9 + -3x^3 + 8x^2 - 4x + 6 ─────────────────────── 4x^3 + 6x^2 - 9x + 15 ``` --- ## 3. Multiplying Monomials and Polynomials Multiplying polynomial terms requires applying the **Product Rule of Exponents**: $$x^a \cdot x^b = x^{a+b}$$ When multiplying monomials, multiply the numerical coefficients together and add the exponents of identical variable bases. ### Monomial by Monomial Multiplication - **Example 1:** $(4x^3) \cdot (-3x^5) = (4 \cdot -3)(x^{3+5}) = -12x^8$ - **Example 2:** $(-2x^2y^4) \cdot (7x^3y) = (-2 \cdot 7)(x^{2+3})(y^{4+1}) = -14x^5y^5$ ### Monomial by Polynomial (Distributive Property) To multiply a single monomial by a polynomial, distribute the monomial to every term inside the grouping symbol: $$a(b + c + d) = ab + ac + ad$$ **Worked Example:** Simplify $-3x^2(4x^3 - 5x^2 + 2x - 7)$. $$\begin{aligned} &= (-3x^2)(4x^3) + (-3x^2)(-5x^2) + (-3x^2)(2x) + (-3x^2)(-7) \\ &= -12x^{2+3} + 15x^{2+2} - 6x^{2+1} + 21x^2 \\ &= -12x^5 + 15x^4 - 6x^3 + 21x^2 \end{aligned}$$ --- ## 4. Multiplying Two Binomials: The FOIL Method & The Area Model When multiplying two binomials $(a + b)(c + d)$, every term in the first binomial must multiply every term in the second binomial. This produces four individual products remembered by the mnemonic **FOIL**: ```text F (First) ───────> a * c ┌────────────────┐ (a + b) (c + d) ───> O (Outside) ──> a * d └────┬───┘ ───> I (Inside) ──> b * c L (Last) ───> b * d ``` - **F (First):** Multiply the first terms in each set of parentheses ($a \cdot c$). - **O (Outside):** Multiply the outermost terms ($a \cdot d$). - **I (Inside):** Multiply the innermost terms ($b \cdot c$). - **L (Last):** Multiply the last terms in each set of parentheses ($b \cdot d$). **Worked Example:** Expand $(3x + 4)(2x - 5)$. - **F:** $(3x)(2x) = 6x^2$ - **O:** $(3x)(-5) = -15x$ - **I:** $(4)(2x) = +8x$ - **L:** $(4)(-5) = -20$ - **Combine Like Middle Terms:** $6x^2 + (-15x + 8x) - 20 = \mathbf{6x^2 - 7x - 20}$ ### The Geometric Area Model (Box Method) The area of a rectangle with side lengths $(3x + 4)$ and $(2x - 5)$ equals the sum of its four interior sub-areas: ```text 3x +4 ┌────────────┬────────────┐ 2x │ 6x^2 │ +8x │ --> 6x^2 + 8x ├────────────┼────────────┤ -5 │ -15x │ -20 │ --> -15x - 20 └────────────┴────────────┘ Total Sum = 6x^2 + (-15x + 8x) - 20 = 6x^2 - 7x - 20 ``` --- ## 5. Special Binomial Products & Patterns Recognizing algebraic shortcuts for recurring binomial products saves valuable calculation time on the TABE: ### 1. Difference of Two Squares Pattern: $(a + b)(a - b) = a^2 - b^2$ When multiplying the sum and difference of the exact same two terms, the outer and inner FOIL products are additive opposites ($+ab - ab = 0$) and cancel out completely: $$(a + b)(a - b) = a^2 - ab + ba - b^2 = a^2 - b^2$$ - **Example:** $(4x + 7)(4x - 7) = (4x)^2 - (7)^2 = \mathbf{16x^2 - 49}$ ### 2. Perfect Square Trinomial Patterns: $(a \pm b)^2 = a^2 \pm 2ab + b^2$ Squaring a binomial produces a trinomial containing three distinct parts: the square of the first term, twice the product of both terms, and the square of the last term. $$(a + b)^2 = (a + b)(a + b) = a^2 + 2ab + b^2$$ $$(a - b)^2 = (a - b)(a - b) = a^2 - 2ab + b^2$$ > [!CAUTION] > **The Exponent Distribution Fallacy:** > $(a + b)^2 \neq a^2 + b^2$. You cannot distribute an exponent over addition or subtraction. The middle term $\pm 2ab$ must never be omitted! - **Worked Example:** Expand $(3x - 5)^2$. $$a = 3x, \quad b = 5$$ $$(3x)^2 - 2(3x)(5) + (5)^2 = \mathbf{9x^2 - 30x + 25}$$ --- ## 6. Multiplying a Binomial by a Trinomial To multiply polynomials of higher degree, distribute each term of the smaller polynomial across every term of the larger polynomial, producing a total of $2 \times 3 = 6$ partial products before combining like terms. **Worked Example:** Expand $(2x - 3)(x^2 + 4x - 5)$. $$\begin{aligned} \text{Distribute } 2x: &\quad 2x(x^2 + 4x - 5) = 2x^3 + 8x^2 - 10x \\ \text{Distribute } -3: &\quad -3(x^2 + 4x - 5) = -3x^2 - 12x + 15 \\ \text{Align and Combine:} &\quad 2x^3 + (8x^2 - 3x^2) + (-10x - 12x) + 15 \\ \text{Final Standard Form:} &\quad \mathbf{2x^3 + 5x^2 - 22x + 15} \end{aligned}$$ ### Applied Geometric Problem: Storage Facility Expansion A logistics company has a rectangular warehouse whose width is modeled by $(2x + 3)\text{ meters}$ and whose length is modeled by $(4x + 5)\text{ meters}$. Find the algebraic polynomial representing the total floor area $A(x)$. $$\begin{aligned} \text{Area} &= \text{Width} \times \text{Length} = (2x + 3)(4x + 5) \\ &= (2x)(4x) + (2x)(5) + (3)(4x) + (3)(5) \\ &= 8x^2 + 10x + 12x + 15 = \mathbf{(8x^2 + 22x + 15) \text{ square meters}} \end{aligned}$$Simplify the polynomial expression: (5x^3 - 3x^2 + 8x - 4) - (2x^3 - 7x^2 - 3x + 9).
Expand and simplify the binomial product: (3x - 4)^2.
Multiply and express the product in standard form: (2x + 3)(x^2 - 4x + 5).