A non-zero constant. Graph is a horizontal line that never crosses the x-axis.
Zeroes: None
Graph is a straight line. Always crosses x-axis at exactly one point.
Zero: x = −b/a (exactly 1)
Graph is a parabola. Opens up if a > 0, down if a < 0.
Zeroes: 0, 1 or 2
S-shaped curve. Always has at least one real zero (cubic always crosses x-axis).
Zeroes: 1, 2 or 3
💡 Degree Rules to Remember
- The degree is the highest power of x with a non-zero coefficient.
- A polynomial of degree n has at most n zeroes.
- The zero polynomial (p(x) = 0) has no defined degree.
- Every real number is a zero of the zero polynomial.
- Binomial = 2 terms · Trinomial = 3 terms · Monomial = 1 term
Evaluating p(x) at x = k
Substitute x = k into p(x) to find p(k).
Example: p(x) = x² − 3x + 2
p(0) = 0 − 0 + 2 = 2
p(1) = 1 − 3 + 2 = 0 ← zero!
p(2) = 4 − 6 + 2 = 0 ← zero!
p(3) = 9 − 9 + 2 = 2
Find degree of composite expressions
5x³ − 2x + 1 → degree 3
3x²y + 2xy² → not a polynomial in one variable
(x+1)(x²−x+1) → expand = x³+1, degree 3
7 → degree 0 (constant)
🎪 Interactive Graph Explorer
= −(coefficient of x) ÷ (coefficient of x²)
The NEGATIVE sign is critical! Many students write +b/a by mistake.
= (constant term) ÷ (coefficient of x²)
No negative sign here — just c/a directly.
Given sum S and product P of zeroes, the quadratic is x² − Sx + P (or any non-zero scalar multiple).
Derivation of the Formulas
⇒ ax² + bx + c = a(x − α)(x − β)
= a[x² − (α+β)x + αβ]
= ax² − a(α+β)x + a·αβ
Comparing coefficients of x: b = −a(α+β) ⇒ α+β = −b/a
Comparing constant terms: c = a·αβ ⇒ αβ = c/a
📝 Worked Example 1 — Find sum and product of zeroes
α + β = −b/a = −(−7)/6 = 7/6
αβ = c/a = −3/6 = −1/2
Verification: zeroes of 6x²−7x−3 = 0 are x = 3/2 and x = −1/3
Sum = 3/2 + (−1/3) = 9/6 − 2/6 = 7/6 ✓
Product = 3/2 × (−1/3) = −3/6 = −1/2 ✓
📝 Worked Example 2 — Form a quadratic from given zeroes
Sum = (2+√3) + (2−√3) = 4
Product = (2+√3)(2−√3) = 4 − 3 = 1
Required polynomial: x² − (sum)x + (product)
= x² − 4x + 1
📝 Worked Example 3 — Find k using zero condition
Since 2 is a zero: p(2) = 0
3(4) − k(2) + 4 = 0 ⇒ 12 − 2k + 4 = 0 ⇒ 2k = 16 ⇒ k = 8
So p(x) = 3x² − 8x + 4. Other zero β:
α + β = 8/3 ⇒ 2 + β = 8/3 ⇒ β = 8/3 − 2 = 2/3
| Identity | Formula in terms of α+β and αβ | Use case |
|---|---|---|
| α² + β² | (α+β)² − 2αβ | Very common in board exams |
| (α−β)² | (α+β)² − 4αβ | Finding individual zeroes |
| α³ + β³ | (α+β)³ − 3αβ(α+β) | Higher order questions |
| 1/α + 1/β | (α+β) / αβ | Common in 2-mark questions |
| α/β + β/α | (α²+β²) / αβ = [(α+β)²−2αβ] / αβ | Requires both steps above |
Sum of all three zeroes. The sign is NEGATIVE (−b/a), same pattern as the quadratic sum formula.
Take all possible pairs: αβ, βγ, γα and add them. Sign is POSITIVE (+c/a).
Product of ALL three zeroes. Sign is NEGATIVE (−d/a). Most commonly forgotten!
Derivation for Cubic
Expanding (x−α)(x−β)(x−γ):
= x³ − (α+β+γ)x² + (αβ+βγ+γα)x − αβγ
So: ax³ + bx² + cx + d = a·x³ − a(α+β+γ)x² + a(αβ+βγ+γα)x − a·αβγ
Comparing x² terms: b = −a(α+β+γ) ⇒ α+β+γ = −b/a
Comparing x terms: c = a(αβ+βγ+γα) ⇒ αβ+βγ+γα = c/a
Comparing constants: d = −a·αβγ ⇒ αβγ = −d/a
📝 Worked Example 1 — Verify relations for a cubic
Zeroes: α=1, β=2, γ=3
Sum: 1+2+3 = 6 −b/a = −(−6)/1 = 6 ✓
Pairs: 1×2+2×3+3×1 = 2+6+3 = 11 c/a = 11/1 = 11 ✓
Product: 1×2×3 = 6 −d/a = −(−6)/1 = 6 ✓
📝 Worked Example 2 — Find all zeroes given one zero
Divide p(x) by (x − 1/2), or equivalently by (2x − 1):
2x³ + x² − 5x + 2 = (2x − 1)(x² + x − 2)
Factor the quotient: x² + x − 2 = (x+2)(x−1)
So zeroes: 1/2, −2, 1
Verify with relations (a=2, b=1, c=−5, d=2):
Sum: 1/2+(−2)+1 = −1/2 = −b/a = −1/2 ✓
Product: (1/2)(−2)(1) = −1 = −d/a = −2/2 = −1 ✓
"Sum: Minus, Pairs: Plus, Product: Minus" → −b/a, +c/a, −d/a
✎ Interactive Polynomial Division
Divide ax² + bx + c by (x + d). Enter the coefficients below.
📝 Worked Example — Finding remaining zeroes
Since 3 is a zero, (x − 3) is a factor. Divide p(x) by (x − 3):
x³ − 3x² − x + 3 ÷ (x − 3):
→ x³ ÷ x = x² ... multiply: x²(x−3) = x³−3x² ... subtract: −x+3
→ −x ÷ x = −1 ... multiply: −1(x−3) = −x+3 ... subtract: 0
Quotient = x² − 1 = (x−1)(x+1)
All zeroes: x = 3, x = 1, x = −1
When to use the Division Algorithm
- Finding all zeroes when one or two zeroes are given
- Checking if g(x) is a factor of p(x) (remainder = 0)
- Expressing a polynomial in factored form
- Finding the quotient and remainder in exam problems
Factor Theorem
x − a is a factor of p(x) ⟺ p(a) = 0
Equivalently: a is a zero of p(x) iff (x−a) divides p(x) with zero remainder.
This makes it easy to check whether a given value is a zero: just substitute!