Maths I — Week 2: Polynomials, Quadratics, and Coordinate Geometry
971 words
5 min read
View
Week 2: Polynomials and Quadratics
1. Anatomy of a Polynomial
A polynomial is an expression of the form anxn+an−1xn−1+⋯+a1x+a0 where all exponents are non-negative integers.
- Degree: The highest power. The degree controls the maximum number of roots.
- Leading Coefficient: an (the coefficient of the highest power).
2. The Quadratic Equation
Standard form: ax2+bx+c=0, where a=0.
The roots are given by the quadratic formula:
x=2a−b±b2−4ac
The Discriminant Δ=b2−4ac
The discriminant completely determines the nature of the roots before solving:
| Δ | Nature of Roots | Graph Behaviour |
|---|---|---|
| Δ>0 | 2 distinct real roots | Parabola crosses x-axis twice |
| Δ=0 | 1 repeated real root | Parabola touches x-axis (tangent) |
| Δ<0 | 2 complex conjugate roots | Parabola never crosses x-axis |
Trap: If Δ<0 and someone asks "find the roots using the formula", the answer will involve negative — a complex (imaginary) number, not a real root. Always check Δ first.
3. Vieta's Formulas (Root Relationships without Finding Roots)
For a quadratic ax2+bx+c=0 with roots α and β:
α+β=−ab
α⋅β=ac
This lets you reconstruct the equation from the roots or find properties of roots without solving the full quadratic.
4. Factorization Strategies
- Factor out GCD: 6x2+9x=3x(2x+3).
- Product-Sum Method: Find two numbers that multiply to ac and add to b.
- Difference of Squares: a2−b2=(a+b)(a−b).
- Perfect Square Trinomial: a2+2ab+b2=(a+b)2.
5. Flashcards
<Flashcard front="What does a negative discriminant indicate?" back="No real roots. The parabola does not cross the x-axis. Roots are complex conjugates." /> <Flashcard front="State Vieta's formulas for a quadratic ax² + bx + c = 0." back="Sum of roots = -b/a. Product of roots = c/a." /> <Flashcard front="What is the vertex form of a quadratic?" back="f(x) = a(x - h)² + k, where (h, k) is the vertex." />6. Problem Solving Combinations & Solutions
Type 1: Find equation given roots
Q: Find a quadratic with roots 3 and −2.
Solution: Using Vieta's — Sum =1, Product =−6. Equation: x2−x−6=0.
Type 2: Find properties from equation without solving
Q: For 2x2−5x+3=0, find α2+β2.
Solution:
α+β=5/2, αβ=3/2.
α2+β2=(α+β)2−2αβ=25/4−3=13/4.
Type 3: Nature of roots analysis
Q: For what values of k does kx2+4x+1=0 have equal roots?
Solution: Equal roots ⟹Δ=0⟹16−4k=0⟹k=4.
Common Traps
- a=0 makes it linear, not quadratic.
- Repeated roots (Δ=0) means only ONE distinct root, but algebraically it counts as two.
- Complex roots always come in conjugate pairs for real-coefficient polynomials.
7. Coordinate Geometry Toolkit (Week 2 Graded Focus)
Week 2's graded assignment heavily tests coordinate geometry alongside polynomials. Master these tools.
7.1 Key Formulas
| Formula | Expression |
|---|---|
| Distance between (x1,y1) and (x2,y2) | (x2−x1)2+(y2−y1)2 |
| Midpoint | (2x1+x2,2y1+y2) |
| Section Formula (Internal) | (m+nmx2+nx1,m+nmy2+ny1) for ratio m:n |
| Slope of a line | m=x2−x1y2−y1 |
| Slope of perpendicular | m⊥=−m1 |
| Point-slope form | y−y1=m(x−x1) |
Tip
Perpendicular Slope Rule: If the slope of a line is 3, the perpendicular slope is −1/3. If slope is −1/2, perpendicular is 2. Always negate and flip.
7.2 Pattern — Perpendicular Bisector
What to recognize: Given two points A and B, find the perpendicular bisector.
Abstract Solution (Strategy)
- [Find midpoint]: The perpendicular bisector passes through the midpoint of AB.
- [Find slope of AB]: mAB.
- [Perpendicular slope]: m⊥=−1/mAB.
- [Point-slope form]: Write the line through the midpoint with slope m⊥.
Worked Example:
Perpendicular bisector of segment joining (1,0) and (5,4).
- Midpoint: (3,2).
- Slope of segment: 5−14−0=1.
- Perpendicular slope: −1.
- Line: y−2=−1(x−3)⟹y=−x+5.
8. Additional Flashcards
<Flashcard front="State the Internal Section Formula." back="Point dividing AB in ratio m:n is ((mx₂+nx₁)/(m+n), (my₂+ny₁)/(m+n))." /> <Flashcard front="If two lines are perpendicular, how are their slopes related?" back="Their slopes are negative reciprocals: m₁ × m₂ = -1." /> <Flashcard front="How do you find α² + β² from Vieta's?" back="(α+β)² - 2αβ. Use sum and product from Vieta's without solving for the roots." />9. Practice Targets
- Solve Graded Assignment 2 (Coordinate Geometry + Polynomials).
- Find α3+β3 using Vieta's (hint: factor the sum of cubes identity).
- Determine nature of roots for 5 random quadratics using discriminant only.
- Prove that the diagonals of a square are perpendicular bisectors using the section and slope formulas.
10. Connections
| Connects to | How |
|---|---|
| Week 1 — Functions | Quadratics are the first non-linear functions we analyze. |
| Week 3 — Limits | Limit of a quadratic at a removable discontinuity is resolved by factoring (the same quadratic methods). |
| Statistics I | The normal distribution curve is bell-shaped — a Gaussian, which is related to e−x2. |