Quiz 2

Mathematics I · Week 4 — Algebra of polynomials

1315 words
7 min read
2026-08-16T00:00:00.000Z
Python Week 1: the first filter for runtime behavior
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)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.
  1. Factor theoremf(a)=0 ⇔ (x−a) | f(x) — root ↔ factor
  2. Remainderremainder ÷ (x−a) is f(a) — synthetic division check
  3. Degreehighest power of x with nonzero coeff — classify polynomial
  4. Multiplicity(x−a)^k factor → k — touch vs cross at root
  5. End behavioureven degree: same ends; odd: opposite — leading coeff sign sets direction

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+a0p(x) = a_n x^n + \cdots + a_1 x + a_0 → polynomial in xx → coefficients real → p(x)=3x32x+7p(x) = 3x^3 - 2x + 7.
  • Degree nn → highest power with an0a_n \neq 05x295x^2 - 9 has degree 2.
  • Leading term anxna_n x^n → dominates for large x|x| → end behaviour driver.
  • Zero / root rrp(r)=0p(r) = 0(xr)(x-r) is a factor (over reals, if fully factorable).

Multiplicity

If (xr)m(x-r)^m divides p(x)p(x) with largest mm, root rr has multiplicity mm.
  • m=1m=1 → graph crosses axis at rr.
  • m=2m=2 → often touches and turns (bounce).
  • m=3m=3 → crosses but flattens (flattened S).
Mini-example: p(x)=(x1)2(x+3)p(x) = (x-1)^2(x+3). Zeros: 11 (mult 2), 3-3 (mult 1). Degree 3.

Operations

  • Add/subtract: combine like terms only (x2x^2 with x2x^2, not with xx).
  • Multiply: distribute each term; exponents add: xaxb=xa+bx^a \cdot x^b = x^{a+b}.
  • Long division: divide p(x)p(x) by (xa)(x-a); remainder degree less than divisor; if remainder 0, (xa)(x-a) is factor.
Mini-example: (2x2+3x5)+(x23x+1)=3x24(2x^2 + 3x - 5) + (x^2 - 3x + 1) = 3x^2 - 4.
Multiply: (x+2)(x2x+1)=x3+x2x+2(x+2)(x^2 - x + 1) = x^3 + x^2 - x + 2.

Factor theorem

(xa)(x - a) is a factor of p(x)p(x) iff p(a)=0p(a) = 0.
Useful workflow: test small integers for rational roots when leading coefficient is 1 or small.
Mini-example: p(x)=x34x2+x+6p(x) = x^3 - 4x^2 + x + 6. Try a=2a=2: 816+2+6=08-16+2+6=0(x2)(x-2) factor. Divide to get x22x3=(x3)(x+1)x^2 - 2x - 3 = (x-3)(x+1). Full: (x2)(x3)(x+1)(x-2)(x-3)(x+1).

End behaviour

For large x|x|, p(x)anxnp(x) \approx a_n x^n:
nnan>0a_n > 0an<0a_n < 0
evenboth ends upboth ends down
oddleft down, right upleft up, right down
Mini-example: 2x4+-2x^4 + \cdots → 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(2), p(1)p(-1) by substitution.
  • Identify yy-intercept as p(0)=a0p(0) = a_0.

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 kk so xax-a divides p(x)kp(x)-k (horizontal shift of roots).

Worked mini-examples

Example 1 — Degree. p(x)=7x4x7+2xp(x) = 7x^4 - x^7 + 2x. Rewrite standard: x7+7x4+2x-x^7 + 7x^4 + 2x. Degree 7, leading coeff 1-1.
Example 2 — Factor test. p(x)=x36x2+11x6p(x) = x^3 - 6x^2 + 11x - 6. p(1)=0p(1)=0, p(2)=0p(2)=0, p(3)=0p(3)=0(x1)(x2)(x3)(x-1)(x-2)(x-3).
Example 3 — Multiplicity sketch. p(x)=x2(x4)3p(x) = x^2(x-4)^3. Zeros: 00 mult 2 (touch), 44 mult 3 (cross flat). Degree 5. Ends: positive leading (implicit x5x^5) → left down, right up.
Example 4 — Remainder. Divide x3+2x5x^3 + 2x - 5 by (x1)(x-1): synthetic or long division gives remainder 4-4 (same as p(1)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 yy-intercept (x=0x=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)

  1. What is the degree and leading coefficient of p(x)=4xx3+2x57p(x) = 4x - x^3 + 2x^5 - 7?
  2. If p(x)=(x+2)2(x5)p(x) = (x+2)^2(x-5), list all real zeros and their multiplicities.
  3. Use the factor theorem to decide whether (x+1)(x+1) is a factor of p(x)=x3+3x2x3p(x) = x^3 + 3x^2 - x - 3.
  4. Multiply and simplify: (x23)(2x2+x4)(x^2 - 3)(2x^2 + x - 4).
  5. Describe end behaviour (left and right) of f(x)=3x6+2x21f(x) = -3x^6 + 2x^2 - 1 as x±x \to \pm\infty.

ChatGPT prep archive

Archived import for extra depth — complements the notes above, not official IITM material.

Core concepts

  • Polynomial: sum of terms anxna_n x^n; degree is highest power with nonzero coefficient.
  • Operations: add/subtract like terms; multiply by distributing; long division for p(x)/q(x)p(x)/q(x).
  • Factor theorem: (xa)(x-a) is a factor iff p(a)=0p(a)=0; multiplicity counts repeated roots.
  • End behaviour: dominated by leading term anxna_n x^n; sign of ana_n and parity of nn set both ends.

Notation & vocabulary

IdeaRule
Degreehighest exponent with an0a_n \neq 0
Remainderdegree of remainder << degree of divisor
Multiplicity mm(xa)m(x-a)^m factor; graph touches/bounces at aa

Pattern families

Easy — Evaluate and classify degree

Combine like terms to standard form. State degree and leading coefficient. Evaluate p(a)p(a) by substitution—this is the hook for factor checks.

Medium — Factor using theorem

Test rational candidates aa where p(a)=0p(a)=0. Divide out (xa)(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 yy-intercept (evaluate p(0)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

  1. What does factor theorem say in one line?
  2. How does multiplicity 3 affect graph at a zero?
  3. What determines end behaviour of a polynomial?

Practice loop

  1. Read Deep study (if present) or core concepts once.
  2. Recite the formula chain without looking.
  3. Open one easy pattern on the interactive atlas for week 4.
  4. Attempt without solutions; mark studied after an honest try.
  5. Say one trap aloud before closing the tab.
Document outline

Keep your place and jump directly to a heading.

Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.