Math graphic
📐 Concept diagram

01-08 - Quadratic Equations

Phase: 1 | Subject: 01-08 Prerequisites: 01-07-quadratic-expressions.md (factorising quadratics) Next subject: 01-09-polynomials.md


Learning Objectives

By the end of this subject, you will be able to:

  1. Solve quadratic equations by factorising
  2. Use the quadratic formula for any quadratic equation
  3. Calculate and interpret the discriminant
  4. Complete the square to solve quadratics
  5. Convert between standard form, vertex form, and factored form

Core Content

What is a Quadratic Equation?

A quadratic equation has the form:

$ax² + bx + c = 0$ where a ≠ 0

The highest power of x is 2. Solutions are called roots or x-intercepts — where the parabola crosses the x-axis.

Zero Product Property

If AB = 0, then A = 0 OR B = 0.

This is the key to solving by factorising.

Example: (x - 3)(x + 2) = 0 - Either x - 3 = 0 → x = 3 - Or x + 2 = 0 → x = -2

Solutions: x = 3 or x = -2

Solving by Factorising

Steps: 1. Ensure equation is in form ax² + bx + c = 0 2. Factorise the left side 3. Set each factor equal to 0 and solve

Example: Solve x² - 5x + 6 = 0

  1. Already in standard form
  2. Factorise: (x - 2)(x - 3) = 0
  3. x - 2 = 0 → x = 2
  4. x - 3 = 0 → x = 3

Solutions: x = 2 or x = 3

Example: Solve 2x² + 7x + 3 = 0

  1. Factorise: (2x + 1)(x + 3) = 0
  2. 2x + 1 = 0 → x = -1/2
  3. x + 3 = 0 → x = -3

Solutions: x = -1/2 or x = -3

The Quadratic Formula

⚠️ THIS IS CRITICAL — the quadratic formula is one of the most-used formulas in all of mathematics. You will use it constantly in later phases: optimisation problems, physics, engineering, and it underpins the discriminant analysis used in linear algebra and ML.

For ANY quadratic equation ax² + bx + c = 0:

$x = (-b ± √(b² - 4ac)) / (2a)
$

The ± means there are TWO solutions (usually).

Common pitfall — forgetting the ±: The ± symbol is NOT optional. It gives both solutions. Omitting it gives only ONE root. Always compute both: one with + and one with -.

Common pitfall — equation must = 0: The quadratic formula requires the equation to be in the form ax² + bx + c = 0. If your equation is not equal to zero (e.g., x² + 3x = 10), rearrange it first: x² + 3x - 10 = 0.

Example: Solve x² - 4x - 5 = 0

  1. a = 1, b = -4, c = -5
  2. x = (4 ± √((-4)² - 4(1)(-5))) / 2
  3. x = (4 ± √(16 + 20)) / 2
  4. x = (4 ± √36) / 2
  5. x = (4 ± 6) / 2
  6. x = (4 + 6)/2 = 5 or x = (4 - 6)/2 = -1

Solutions: x = 5 or x = -1

The Discriminant

The expression under the square root: Δ = b² - 4ac

Discriminant Meaning Solutions
Δ > 0 Two distinct real roots Two different real solutions
Δ = 0 One repeated real root One solution (parabola touches x-axis)
Δ < 0 No real roots Two complex conjugate roots

Example: Discriminant of x² + 2x + 2 = 0

Δ = 2² - 4(1)(2) = 4 - 8 = -4 < 0

No real solutions. The parabola never crosses the x-axis.

Completing the Square

Convert ax² + bx + c to a(x - h)² + k form.

Steps: 1. If a ≠ 1, factor out a from first two terms 2. Take half of b, square it, add and subtract inside 3. Rewrite as perfect square

Example: Complete the square for x² + 6x + 2

  1. Take half of 6: 3. Square it: 9.
  2. Add and subtract 9: x² + 6x + 9 - 9 + 2
  3. Rewrite: (x + 3)² - 7

To solve x² + 6x + 2 = 0: 1. (x + 3)² - 7 = 0 2. (x + 3)² = 7 3. x + 3 = ±√7 4. x = -3 ± √7

Example: Complete the square for 2x² + 8x + 3

  1. Factor out 2: 2(x² + 4x) + 3
  2. Half of 4: 2. Square: 4.
  3. 2(x² + 4x + 4 - 4) + 3
  4. 2((x + 2)² - 4) + 3
  5. 2(x + 2)² - 8 + 3
  6. 2(x + 2)² - 5

Vertex Form

From completing the square: a(x - h)² + k

Example: y = x² - 4x + 3

  1. Complete square: (x - 2)² - 1
  2. Vertex: (2, -1)
  3. Opens upward (a = 1 > 0), so vertex is minimum


Key Terms

Worked Examples

Example 1: Solve by factorising x² - 3x - 10 = 0

  1. Find numbers that multiply to -10 and add to -3: -5 and 2
  2. (x - 5)(x + 2) = 0
  3. x - 5 = 0 → x = 5
  4. x + 2 = 0 → x = -2

Solutions: x = 5, x = -2

Example 2: Solve using quadratic formula 3x² + 2x - 1 = 0

  1. a = 3, b = 2, c = -1
  2. x = (-2 ± √(4 - 4(3)(-1))) / 6
  3. x = (-2 ± √(4 + 12)) / 6
  4. x = (-2 ± √16) / 6
  5. x = (-2 ± 4) / 6
  6. x = 2/6 = 1/3 or x = -6/6 = -1

Solutions: x = 1/3, x = -1

Example 3: Complete the square for x² + 4x + 1 = 0

  1. (x² + 4x + 4) - 4 + 1 = 0
  2. (x + 2)² - 3 = 0
  3. (x + 2)² = 3
  4. x + 2 = ±√3
  5. x = -2 ± √3

Solutions: x ≈ -2 + 1.732 = -0.268 or x ≈ -2 - 1.732 = -3.732



Quiz

Q1: What does the concept of Completing the Square primarily refer to in this subject?

A) The definition and application of Completing the Square B) A visual representation of Completing the Square C) A computational error related to Completing the Square D) A historical anecdote about Completing the Square

Correct: A)

Q2: What is the primary purpose of Discriminant?

A) It is used to discriminant in mathematical analysis B) It replaces all other methods in this domain C) It is used only in advanced research contexts D) It is primarily a historical notation system

Correct: A)

Q3: Which statement about Solving by Factorising is TRUE?

A) Solving by Factorising is an advanced topic beyond this subject's scope B) Solving by Factorising is not related to this subject C) Solving by Factorising is mentioned only as a historical footnote D) Solving by Factorising is a fundamental concept covered in this subject

Correct: D)

Q4: Based on the worked examples in this subject, what is the correct result?

A) A different result from a common mistake B) 0 C) The inverse of the correct answer D) An unrelated numerical value

Correct: B)

Q5: How are Solving by Factorising and The Discriminant related?

A) Solving by Factorising is a special case of The Discriminant B) Solving by Factorising and The Discriminant are completely unrelated topics C) Solving by Factorising and The Discriminant are closely related concepts D) Solving by Factorising is the inverse of The Discriminant

Correct: C)

Q6: What is a common pitfall when working with The Quadratic Formula?

A) The Quadratic Formula is always computed the same way in all contexts B) A common mistake is confusing The Quadratic Formula with a similar concept C) The Quadratic Formula has no common misconceptions D) The main error with The Quadratic Formula is using it when it is not needed

Correct: B)

Q7: When should you apply Vertex Form?

A) Use Vertex Form only in pure mathematics contexts B) Apply Vertex Form to solve problems in this subject's domain C) Vertex Form is not practically useful D) Avoid Vertex Form unless explicitly instructed

Correct: B)

Practice Problems

  1. Solve: x² - 7x + 12 = 0
    Click for answer

(x - 3)(x - 4) = 0. x = 3 or x = 4.

  1. Solve: x² + 5x + 6 = 0
    Click for answer

(x + 2)(x + 3) = 0. x = -2 or x = -3.

  1. Solve: 2x² - 5x - 3 = 0
    Click for answer

Factorise: (2x + 1)(x - 3) = 0. x = -1/2 or x = 3.

  1. Solve using formula: x² - 2x - 8 = 0
    Click for answer

a=1, b=-2, c=-8. x = (2 ± √(4 + 32))/2 = (2 ± 6)/2. x = 4 or x = -2.

  1. Find discriminant of 2x² + 3x + 1 = 0 and interpret
    Click for answer

Δ = 9 - 8 = 1 > 0. Two distinct real roots.

  1. Complete the square: x² + 8x + 5 = 0
    Click for answer

(x + 4)² - 16 + 5 = 0, (x + 4)² = 11, x = -4 ± √11.

  1. Solve: 3x² + 6x + 2 = 0
    Click for answer

a=3, b=6, c=2. x = (-6 ± √(36 - 24))/6 = (-6 ± √12)/6 = (-6 ± 2√3)/6 = -1 ± √3/3.


Summary

Key takeaways:


Pitfalls



Next Steps

Next up: 01-09-polynomials.md