Polynomials
Degree and Zeroes of a Polynomial
What is a Polynomial?
A polynomial is an algebraic expression that contains one or more terms, where each term consists of a variable raised to a non-negative integer exponent, multiplied by a coefficient (a real number).
The word "polynomial" comes from "poly" (many) and "nomial" (terms).
Key Components of a Polynomial:
| Component | Definition | Example in 3x² + 2x - 5 |
|---|---|---|
| **Coefficient** | The numerical factor of a term | 3, 2, -5 |
| **Variable** | The letter representing an unknown quantity | x |
| **Exponent** | The power to which the variable is raised | 2, 1, 0 |
| **Degree** | The highest exponent in the polynomial | 2 |
Polynomials in One Variable:
A polynomial in one variable (say x) has the general form:
aₙxⁿ + aₙ₋₁xⁿ⁻¹ + ... + a₁x + a₀, where aₙ, aₙ₋₁, ..., a₀ are constants (coefficients).
Types of Polynomials Based on Degree:
| Type | Degree | Standard Form | Example |
|---|---|---|---|
| **Linear** | 1 | ax + b | 3x + 4, -2x + 1 |
| **Quadratic** | 2 | ax² + bx + c | x² - 5x + 6, 2x² + 3x - 1 |
| **Cubic** | 3 | ax³ + bx² + cx + d | x³ - 8, 2x³ + x² - x + 4 |
Types of Polynomials Based on Number of Terms:
| Type | Number of Terms | Example |
|---|---|---|
| **Binomial** | 2 | x + 3, 2x² - 5, 4x³ + 1 |
| **Trinomial** | 3 | x² + 5x + 6, 3x³ - 2x² + x |
- Degree = highest power of the variable.
- A zero of p(x) makes p(x) = 0; evaluate by substituting the value.
Remainder and Factor Theorems
What is Polynomial Division?
Polynomial division is similar to long division with numbers. When dividing a polynomial by a linear divisor (x - a), we can use two methods:
- Long division (general method)
- Synthetic division (shortcut when divisor is x - a)
Division Algorithm for Polynomials:
When dividing polynomial P(x) by divisor d(x), we get:
Where Q(x) is the quotient and R(x) is the remainder. The degree of R(x) is less than the degree of d(x).
What is a Zero of a Polynomial?
A zero (or root) of a polynomial P(x) is a value of x for which P(x) = 0.
- If P(a) = 0, then a is a zero of the polynomial
- Geometrically, a zero means the graph of the polynomial crosses the x-axis at x = a
Remainder Theorem:
When a polynomial P(x) is divided by (x - a), the remainder is P(a).
Factor Theorem (special case of Remainder Theorem):
- Remainder on dividing p(x) by (x − a) is p(a).
- (x − a) is a factor ⟺ p(a) = 0.
Factorisation and Algebraic Identities
What is Factorization?
Factorization (or factoring) is the process of writing a polynomial as a product of simpler polynomials (factors). It's the reverse of multiplication.
Key Algebraic Identities for Factorization:
| Identity | Formula | Example |
|---|---|---|
| **Perfect Square (Difference)** | (x - y)² = x² - 2xy + y² | (x - 5)² = x² - 10x + 25 |
| **Difference of Squares** | x² - y² = (x + y)(x - y) | x² - 16 = (x + 4)(x - 4) |
| **Product of Binomials** | (x + a)(x + b) = x² + (a + b)x + ab | (x + 3)(x + 4) = x² + 7x + 12 |
Steps to Factor a Quadratic Trinomial (x² + bx + c):
- Find two numbers whose product = c and sum = b
- Write as (x + m)(x + n) where m × n = c and m + n = b
Special Cases:
- If a ≠ 1 in ax² + bx + c, factoring requires more steps (splitting middle term)
- Difference of squares: a² - b² = (a - b)(a + b)
- Sum of squares a² + b² cannot be factored with real numbers
- Split the middle term to factorise quadratics.
- Know (x+y+z)² and the x³+y³+z³−3xyz identity.