Neural Sync Active
Polynomial Operations
Registry Synced
Polynomial Operations
2521 words
13 min read
Reading compass
Now · 🎯 Learning Objectives
Polynomial Operations
🎯 Learning Objectives
By the end of this topic, you will be able to:
- Define a polynomial function and classify by degree and number of terms
- Perform addition, subtraction, multiplication, and division of polynomials
- Apply the Remainder Theorem and Factor Theorem
- Determine the end behavior, x-intercepts, multiplicities, and turning points of polynomial graphs
- Sketch the graph of a polynomial function given its equation
📋 Prerequisites
- Quadratic Functions & Equations — degree-2 polynomials
- Algebra — exponent rules, distributive property, factoring
- Coordinate geometry — plotting points, intercepts
📖 Core Content
5.1 What is a Polynomial?
5.1.1 Intuition
A polynomial is a mathematical expression built from variables and constants using only addition, subtraction, multiplication, and non-negative integer exponents. Think of it as "many terms" (poly = many, nomial = name/term).
Polynomials model smooth, continuous relationships — from simple linear trends (y=2x+1) to complex curves (y=x5−3x3+2x).
💡 Why this matters: Polynomials are the building blocks of approximation. Taylor series (Maths 2) approximates any smooth function as a polynomial. In ML, polynomial regression captures non-linear patterns.
5.1.2 Formal Definition
A polynomial function is of the form:
where:
- an=0 is the leading coefficient
- n is a non-negative integer (the degree)
- a0 is the constant term
- Each akxk is a term Classification by degree:
| Degree | Name | Example |
|---|---|---|
| 0 | Constant | P(x)=5 |
| 1 | Linear | P(x)=2x+3 |
| 2 | Quadratic | P(x)=x2−4x+4 |
| 3 | Cubic | P(x)=x3−x |
| 4 | Quartic | P(x)=x4−5x2+4 |
| n | n th-degree | P(x)=anxn+⋯ |
Not a polynomial: f(x)=x (fractional exponent), f(x)=1/x (negative exponent), f(x)=2x (variable exponent).
5.2 Operations on Polynomials
5.2.1 Addition and Subtraction
Combine like terms (same variable and exponent).
Example 1.1: Add (3x2−2x+5)+(x2+4x−1).
&= (3x^2 + x^2) + (-2x + 4x) + (5 - 1) \\ &= 4x^2 + 2x + 4 \end{aligned}
\begin{aligned} &= 5x^3 - 2x + 7 - 3x^3 - 4x^2 + x - 2 \\ &= (5x^3 - 3x^3) - 4x^2 + (-2x + x) + (7 - 2) \\ &= 2x^3 - 4x^2 - x + 5 \end{aligned}
\begin{aligned} &= 2x(x^2 - 3x + 4) + 1(x^2 - 3x + 4) \\ &= 2x^3 - 6x^2 + 8x + x^2 - 3x + 4 \\ &= 2x^3 - 5x^2 + 5x + 4 \end{aligned}
\begin{aligned} & \phantom{)} \quad x^2 + 0x + 3 \\ x - 2 &\overline{)x^3 - 2x^2 + 3x - 5} \\ &\underline{x^3 - 2x^2} \\ &\phantom{)} \quad 0x^2 + 3x \\ &\phantom{)} \quad \underline{0x^2 + 0x} \\ &\phantom{)} \qquad \quad 3x - 5 \\ &\phantom{)} \qquad \quad \underline{3x - 6} \\ &\phantom{)} \qquad \quad \qquad 1 \end{aligned}
\boxed{3x^3 + 3x^2 - 2x + 4}
\boxed{x^3 + x^2 - 5x + 3}
\boxed{x^2 - 2x + 3 + \frac{1}{x-1}}
\boxed{11}
\boxed{\text{No, } P(3) = 12 \neq 0}
\boxed{x=1 \text{ (cross), } x=-2 \text{ (touch)}}
\boxed{\text{Up left, down right}}
\boxed{3}
\boxed{(x-2)(x-3)(x+1)}
\boxed{2x^3 - 4x^2 - 10x + 12}
\boxed{(x-2)^k \text{ with } k \text{ even}, (x+1)^m \text{ with } m \text{ odd}}
\boxed{x^2 - 3x + 1 + \frac{2x+4}{x^2+1}}$$ --- ## 🔗 Cross-References - Previous topics: [Quadratic Functions](quadratics-introduction.md), [Quadratic Equations](quadratics-equations.md) - Next topic: [Exponential Functions](../week05/functions-exponential.md) - Across courses: BSMA1003 Maths 2 (Taylor polynomials, polynomial interpolation); BSMA1002 Stats 1 (polynomial regression)
Join Discord
Previous3.2 Quadratic Equations & DiscriminantNext5.1 Exponential Functions