Mathematics I · Week 4 — Algebra of polynomials
1315 words
7 min read
2026-08-16T00:00:00.000Z
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
operations, factor theorem, multiplicity, end behaviour — concepts, pattern families, and traps for Quiz 2 week 4. # Week 4 — algebra of polynomials > **Quiz 2 scope:** Weeks 1–8 per IITM May 2026 foundation courses.

Week 4 — algebra of polynomials
Quiz 2 scope: Weeks 1–8 per IITM May 2026 foundation courses. Source baseline: IITM BS admissions important-dates calendar · May 2026 cycle. Times on assessments are operational conventions — verify hall ticket.
Part of the Quiz 2 prep system%20%C2%B7%20%5BWeeks%201%E2%80%938%20index%5D(.%2Fmay-2026-maths-quiz-2-weeks-1-8-prep) · Pattern atlas · Formula chains.
Week map
Term structure → operations → division → factor theorem → graph from factors
Classify → Represent → Execute → Trap-check
- Recognize: Ask: What does factor theorem say in one line?
- Procedure: Combine like terms to standard form. State degree and leading coefficient. Evaluate p(a) by substitution—this is the hook for factor checks.
- Variations / traps: Watch for: Dropping terms when adding polynomials.
Formula chain (compressed)
polynomial ops → f(a)=0 ⇔ (x−a) factor → multiplicity → end behaviour from degree.
- Factor theorem —
f(a)=0 ⇔ (x−a) | f(x)— root ↔ factor - Remainder —
remainder ÷ (x−a) is f(a)— synthetic division check - Degree —
highest power of x with nonzero coeff— classify polynomial - Multiplicity —
(x−a)^k factor → k— touch vs cross at root - End behaviour —
even degree: same ends; odd: opposite— leading coeff sign sets direction
Open interactive formula desk · Week 4 tab.
Deep study
Mathematics I · Week 4 — Polynomials
Beyond quadratics: degree, operations, factor theorem, multiplicity, and end behaviour.
Week map
Polynomial structure → degree and leading term → add/multiply/divide → remainder idea → factor theorem → zeros and multiplicity → sketch from factors.
Polynomial notation
- p(x)=anxn+⋯+a1x+a0 → polynomial in x → coefficients real → p(x)=3x3−2x+7.
- Degree n → highest power with an=0 → 5x2−9 has degree 2.
- Leading term anxn → dominates for large ∣x∣ → end behaviour driver.
- Zero / root r → p(r)=0 → (x−r) is a factor (over reals, if fully factorable).
Multiplicity
If (x−r)m divides p(x) with largest m, root r has multiplicity m.
- m=1 → graph crosses axis at r.
- m=2 → often touches and turns (bounce).
- m=3 → crosses but flattens (flattened S).
Mini-example: p(x)=(x−1)2(x+3). Zeros: 1 (mult 2), −3 (mult 1). Degree 3.
Operations
- Add/subtract: combine like terms only (x2 with x2, not with x).
- Multiply: distribute each term; exponents add: xa⋅xb=xa+b.
- Long division: divide p(x) by (x−a); remainder degree less than divisor; if remainder 0, (x−a) is factor.
Mini-example: (2x2+3x−5)+(x2−3x+1)=3x2−4.
Multiply: (x+2)(x2−x+1)=x3+x2−x+2.
Factor theorem
(x−a) is a factor of p(x) iff p(a)=0.
Useful workflow: test small integers for rational roots when leading coefficient is 1 or small.
Mini-example: p(x)=x3−4x2+x+6. Try a=2: 8−16+2+6=0 → (x−2) factor. Divide to get x2−2x−3=(x−3)(x+1). Full: (x−2)(x−3)(x+1).
End behaviour
For large ∣x∣, p(x)≈anxn:
| n | an>0 | an<0 |
|---|---|---|
| even | both ends up | both ends down |
| odd | left down, right up | left up, right down |
Mini-example: −2x4+⋯ → even degree 4, negative leading → both ends down.
Pattern families
Easy — Degree and evaluation
- Combine polynomials; state degree and leading coefficient.
- Evaluate p(2), p(−1) by substitution.
- Identify y-intercept as p(0)=a0.
Medium — Factor using theorem
- Test candidates; divide out linear factor; repeat.
- Build polynomial from given zeros with multiplicity in factored form.
- Expand factored form to standard when needed.
Hard — Graph reasoning
- Sketch sign chart from factorization.
- Relate multiplicity to touch/cross at each zero.
- Parameter k so x−a divides p(x)−k (horizontal shift of roots).
Worked mini-examples
Example 1 — Degree. p(x)=7x4−x7+2x. Rewrite standard: −x7+7x4+2x. Degree 7, leading coeff −1.
Example 2 — Factor test. p(x)=x3−6x2+11x−6. p(1)=0, p(2)=0, p(3)=0 → (x−1)(x−2)(x−3).
Example 3 — Multiplicity sketch. p(x)=x2(x−4)3. Zeros: 0 mult 2 (touch), 4 mult 3 (cross flat). Degree 5. Ends: positive leading (implicit x5) → left down, right up.
Example 4 — Remainder. Divide x3+2x−5 by (x−1): synthetic or long division gives remainder −4 (same as p(1)).
Traps
- Degree of zero polynomial handled specially; constant nonzero has degree 0.
- Dropping terms when adding — write all powers or use columns.
- Confusing zero of function with y-intercept (x=0 input).
- Assuming all even-multiplicity roots “bounce” without checking local shape — still need sign chart.
- Wrong end behaviour when only middle terms given — identify leading term first.
Diagnostic (try yourself)
-
What is the degree and leading coefficient of p(x)=4x−x3+2x5−7?
-
If p(x)=(x+2)2(x−5), list all real zeros and their multiplicities.
-
Use the factor theorem to decide whether (x+1) is a factor of p(x)=x3+3x2−x−3.
-
Multiply and simplify: (x2−3)(2x2+x−4).
-
Describe end behaviour (left and right) of f(x)=−3x6+2x2−1 as x→±∞.
ChatGPT prep archive
Archived import for extra depth — complements the notes above, not official IITM material.
Core concepts
- Polynomial: sum of terms anxn; degree is highest power with nonzero coefficient.
- Operations: add/subtract like terms; multiply by distributing; long division for p(x)/q(x).
- Factor theorem: (x−a) is a factor iff p(a)=0; multiplicity counts repeated roots.
- End behaviour: dominated by leading term anxn; sign of an and parity of n set both ends.
Notation & vocabulary
| Idea | Rule |
|---|---|
| Degree | highest exponent with an=0 |
| Remainder | degree of remainder < degree of divisor |
| Multiplicity m | (x−a)m factor; graph touches/bounces at a |
Pattern families
Easy — Evaluate and classify degree
Combine like terms to standard form. State degree and leading coefficient. Evaluate p(a) by substitution—this is the hook for factor checks.
Medium — Factor using theorem
Test rational candidates a where p(a)=0. Divide out (x−a) to reduce degree. Repeat until linear or irreducible quadratic remains. State full factorization with multiplicities.
Hard — Sketch from factorization
Place zeros from factors; mark multiplicity for touch vs cross. End behaviour from leading term. Plot one or two interior points for scale. Do not assume symmetry unless degree and roots justify it.
Drill these on the pattern atlas — filter to week 4.
Traps
- Dropping terms when adding polynomials.
- Confusing zero of function with y-intercept (evaluate p(0)).
- Single crossing at a double root—multiplicity 2 often touches axis.
- Wrong end behaviour when degree is even and leading coefficient negative.
Retrieval prompts
- What does factor theorem say in one line?
- How does multiplicity 3 affect graph at a zero?
- What determines end behaviour of a polynomial?
Practice loop
- Read Deep study (if present) or core concepts once.
- Recite the formula chain without looking.
- Open one easy pattern on the interactive atlas for week 4.
- Attempt without solutions; mark studied after an honest try.
- Say one trap aloud before closing the tab.