In this chapter, you will learn
- —Understand polynomial notation and classify polynomials by degree
- —Find zeros of polynomials and understand their geometric meaning
- —Apply the relationship between zeros and coefficients
- —Perform polynomial division and apply the division algorithm
- —State and apply the remainder theorem and factor theorem
- —Factorize polynomials using various techniques
Introduction to Polynomials
A polynomial is an algebraic expression consisting of terms with non-negative integer exponents and real coefficients.
Standard form: p(x) = a₀ + a₁x + a₂x² + ... + aₙxⁿ
where aₙ ≠ 0, and n = degree of polynomial
Classification by Degree:
- Constant polynomial: Degree 0 (e.g., 5, -3)
- Linear polynomial: Degree 1 (e.g., 2x + 1)
- Quadratic polynomial: Degree 2 (e.g., x² + 3x + 2)
- Cubic polynomial: Degree 3 (e.g., x³ - 2x² + x - 1)
- Biquadratic polynomial: Degree 4 (e.g., x⁴ + x² + 1)
Example: 3x² + 2x + 5
- Terms: 3x², 2x, 5
- Coefficients: 3, 2, 5
- Leading coefficient: 3
- Constant term: 5
- Degree: 2
Key Points:
- Exponents must be non-negative integers (no √x or x⁻¹)
- Degree = highest exponent of x
- Zero polynomial has no degree
- Coefficients can be positive, negative, or zero
- A polynomial of degree n has at most n zeros
Exam Tip
Understand polynomial terminology clearly. Identify degree, leading coefficient, and constant term quickly.
Common Mistake
Confusing polynomial with non-polynomial expressions. √x, x⁻¹, 1/x are NOT polynomials.
Zeros and Geometric Meaning
A zero (or root) of a polynomial p(x) is a value 'a' such that p(a) = 0.
Definition: 'a' is a zero of p(x) if p(a) = 0
Finding Zeros:
Example: Find zeros of p(x) = x² - 5x + 6
- p(x) = 0 → x² - 5x + 6 = 0
- Factor: (x - 2)(x - 3) = 0
- Zeros: x = 2 and x = 3
- Verify: p(2) = 4 - 10 + 6 = 0 ✓; p(3) = 9 - 15 + 6 = 0 ✓
Key Points:
- A polynomial of degree n has at most n real zeros
- Geometrically, zeros are x-intercepts of the polynomial graph
- If 'a' is a zero, then (x - a) is a factor of p(x)
Exam Tip
Verify zeros by substitution: p(a) = 0. Geometrically, they represent x-intercepts on the graph.
Common Mistake
Students confuse zeros with y-intercepts. Zeros are x-intercepts (where y = 0).
Relationship Between Zeros and Coefficients
There is a direct relationship between the zeros and coefficients of a polynomial, especially for quadratic and cubic polynomials.
For a Quadratic Polynomial: ax² + bx + c with zeros α and β
Sum of zeros: α + β = -b/a
Product of zeros: α × β = c/a
Example: Find zeros of x² - 5x + 6
- Coefficients: a = 1, b = -5, c = 6
- Sum of zeros: α + β = -(-5)/1 = 5
- Product of zeros: α × β = 6/1 = 6
- Two numbers summing to 5 with product 6: 2 and 3
- Zeros: α = 2, β = 3
- Verify: 2 + 3 = 5 ✓; 2 × 3 = 6 ✓
For a Cubic Polynomial: ax³ + bx² + cx + d with zeros α, β, γ
Sum of zeros: α + β + γ = -b/a
Sum of products (pair): αβ + βγ + γα = c/a
Product of zeros: α × β × γ = -d/a
Key Applications:
- Finding missing zero: If two zeros are known, find the third using sum
- Forming polynomial: If zeros are given, construct the polynomial
- Verifying roots: Check if found values satisfy sum and product formulas
Forming Polynomial from Zeros:
p(x) = (x - α)(x - β) = x² - (α + β)x + αβ
Exam Tip
Always use sum and product of zeros formulas for quadratics and cubics. They are very useful for verification and finding missing zeros.
Common Mistake
Wrong signs in sum formula. Sum of zeros = -b/a (negative b), not +b/a.
Division Algorithm for Polynomials
The Division Algorithm states that when a polynomial is divided by another, we get quotient and remainder.
Division Algorithm: If p(x) and g(x) are polynomials with g(x) ≠ 0,
p(x) = g(x) × q(x) + r(x)
where q(x) is quotient, r(x) is remainder, and degree(r) < degree(g)
Terminology:
- Dividend: p(x) (the polynomial being divided)
- Divisor: g(x) (the polynomial dividing)
- Quotient: q(x) (the result)
- Remainder: r(x) (what's left over)
Example: Divide x³ + 2x² - 3x + 5 by x - 1
Quotient: x² + 3x Divisor ) x³ + 2x² - 3x + 5 x³ - x² ________ 3x² - 3x 3x² - 3x ________ 0 + 5
Result: p(x) = (x - 1)(x² + 3x) + 5
Quotient = x² + 3x, Remainder = 5
Steps for Polynomial Long Division:
- Arrange both polynomials in descending order of power
- Divide the first term of dividend by first term of divisor
- Multiply the entire divisor by this quotient term
- Subtract from the dividend
- Repeat until degree of remainder < degree of divisor
Key Points:
- For linear divisor (x - a), remainder is always a constant
- Division by (x - 1) is simpler than general linear divisors
- This algorithm is essential for remainder and factor theorems
Exam Tip
Master polynomial long division. Practice with clear steps. When remainder is 0, g(x) is a factor of p(x).
Common Mistake
Students make arithmetic errors during subtraction. Work step-by-step and check at the end using: p(x) = g(x)×q(x) + r(x).
Remainder Theorem and Factor Theorem
The Remainder Theorem provides a shortcut to find the remainder without full division.
Remainder Theorem: If p(x) is divided by (x - a), the remainder is p(a).
Example: Find remainder when p(x) = x³ + 2x² - 3x + 5 is divided by (x - 1)
- Using Remainder Theorem: Remainder = p(1)
- p(1) = (1)³ + 2(1)² - 3(1) + 5 = 1 + 2 - 3 + 5 = 5
- Answer: Remainder = 5 (matches division result!)
Factor Theorem: (x - a) is a factor of p(x) if and only if p(a) = 0
Example: Show that (x - 2) is a factor of x³ - 2x² - x + 2
- Check: p(2) = (2)³ - 2(2)² - 2 + 2 = 8 - 8 - 2 + 2 = 0
- Since p(2) = 0, (x - 2) is a factor
- We can write: p(x) = (x - 2) × q(x)
Practical Uses:
- Find remainder quickly: No need for long division if using remainder theorem
- Check if factor exists: Substitute the value and check if p(a) = 0
- Factorize polynomials: Find zeros, use factor theorem to identify factors
Key Points:
- Remainder theorem works for any polynomial divided by linear (x - a)
- Factor theorem is a special case: remainder = 0 means (x - a) is a factor
- If p(a) ≠ 0, then (x - a) is NOT a factor
Exam Tip
Use remainder theorem and factor theorem for quick solutions. They save significant time compared to long division.
Common Mistake
Confusing remainder theorem with factor theorem. Remainder = p(a) always; factor exists only if p(a) = 0.
Factorization of Polynomials
Factorization means expressing a polynomial as a product of its factors.
Common Factorization Methods:
1. Factoring Common Factors
Take out the GCD of all terms
Example: 3x² + 6x + 9 = 3(x² + 2x + 3)
2. Factoring Quadratics: ac method
For ax² + bx + c, find factors of ac that sum to b
Example: 2x² + 7x + 3
- ac = 2 × 3 = 6
- Factors of 6: 1,6 or 2,3. Choose 1 and 6 (sum = 7)
- 2x² + x + 6x + 3 = x(2x + 1) + 3(2x + 1) = (x + 3)(2x + 1)
3. Using Algebraic Identities
- a² - b² = (a - b)(a + b)
- a³ + b³ = (a + b)(a² - ab + b²)
- a³ - b³ = (a - b)(a² + ab + b²)
- (a + b)² = a² + 2ab + b²
Example: x² - 25 = (x - 5)(x + 5)
4. Using Factor Theorem
For cubic/higher degree: Find one zero, use factor theorem to identify factor
Example: p(x) = x³ - 2x² - x + 2
- Try p(1) = 1 - 2 - 1 + 2 = 0 ✓ (so x - 1 is a factor)
- Divide: p(x) = (x - 1)(x² - x - 2) = (x - 1)(x - 2)(x + 1)
Strategy for Factorization:
- Look for common factors first
- For quadratics, use ac method or identify perfect squares
- For cubics, use factor theorem to find one zero
- After removing one factor, factor the remaining polynomial
- Verify by expanding
Exam Tip
Factorization questions can be solved with multiple methods. Choose the quickest one. Always verify by expanding.
Common Mistake
Incomplete factorization. Factor completely until all factors are irreducible. Example: x² - 4 = (x - 2)(x + 2), not just (x² - 4).
Chapter Summary
Polynomials is about understanding polynomial functions and their properties. Key concepts:
- Definition and Classification: Polynomials are classified by degree (linear, quadratic, cubic, etc.)
- Zeros: Values where p(x) = 0; geometrically, x-intercepts
- Zeros-Coefficients Relationship: Sum and product of zeros relate to polynomial coefficients
- Division Algorithm: p(x) = g(x)q(x) + r(x) for polynomial division
- Remainder Theorem: Remainder when dividing by (x-a) is p(a)
- Factor Theorem: (x-a) is a factor if and only if p(a) = 0
- Factorization: Multiple techniques including AC method, identities, and factor theorem
Exam Focus: Division algorithm, remainder/factor theorems, finding zeros and coefficients relationships, factorization of quadratics and cubics.