Quadratic Functions
Revise Quadratic Functions for Additional Mathematics — revision notes and instant AI marking. Free to start.
Quadratic Functions
💡 The Big Idea: A quadratic equation is any equation with an x² term in it, and because squaring can "hide" a sign, every quadratic naturally wants to give you two answers — your job is to find both, using whichever tool (factorising, the formula, or completing the square) is fastest for the numbers you're given.
Summary — What's in this Chapter
- Solving by factorising — split the quadratic into two brackets and set each to zero.
- The quadratic formula — a "works every time" formula, especially good with large or ugly numbers.
- Completing the square — rewrites the quadratic so x appears only once; reveals the turning point.
- Choosing the right method — a decision-making skill examiners specifically test.
- Hidden quadratics — equations in disguise (x⁴, √x, 2ˣ, tan x) that are secretly quadratic in structure.
- The discriminant (b² − 4ac) — tells you how many real roots a quadratic has, without solving it.
- Quadratic graphs — the parabola shape, roots, y-intercept, and turning point.
- Quadratic inequalities — solving ax² + bx + c > 0 (or <, ≤, ≥) using a sketch.
- Inequalities on graphs — shading a region that satisfies several inequalities (linear + quadratic) at once.
1. Solving Quadratics by Factorising
The Core Idea
Think of a quadratic equation like (x − 3)(x + 7) = 0 as two numbers being multiplied together to make zero. The only way two numbers multiply to give zero is if at least one of them IS zero. There's no other way — you can't multiply two non-zero numbers and land on zero. So if A × B = 0, then either A = 0 or B = 0 (or both).
This is the entire trick behind factorising. Once your quadratic is written as two brackets multiplied together and set equal to zero, you just solve each bracket separately.
Worked Example — Step by Step
Solve (2x − 3)(3x + 5) = 0
Step 1 — Set the first bracket to zero: 2x − 3 = 0 → 2x = 3 → x = 3/2
Step 2 — Set the second bracket to zero: 3x + 5 = 0 → 3x = −5 → x = −5/3
Step 3 — Write both solutions together: x = 3/2 or x = −5/3
Solve x(5x − 1) = 0.
Solve (8x + 7)(2x − 3) = 0.
2. The Quadratic Formula
Why It Always Works
Not every quadratic factorises nicely — sometimes the numbers are just too ugly or "random". The quadratic formula is the universal backup plan: plug in a, b and c from ax² + bx + c = 0, and it spits out both solutions, guaranteed, every single time (as long as real solutions exist).
Worked Example — Step by Step
Solve 2x² − 5x + 2 = 0 using the formula
Step 1 — Identify: a = 2, b = −5, c = 2
Step 2 — Substitute (bracket negatives): x = ( −(−5) ± √((−5)² − 4×2×2) ) / (2×2)
Step 3 — Simplify inside the root: x = (5 ± √(25 − 16)) / 4 = (5 ± √9) / 4 = (5 ± 3) / 4
Step 4 — Split + and −: x = 8/4 = 2, or x = 2/4 = 1/2
Answer: x = 2 or x = 1/2
Use the quadratic formula, without a calculator, to find the exact solutions of 12x² − 17x + 6 = 0.
3. Completing the Square
The Core Idea
Completing the square rewrites y = ax² + bx + c as y = a(x + p)² + q. The magic of this form is that x only appears once. That single change unlocks two superpowers: you can solve the equation using ±√ (no factorising needed), and you can instantly read off the turning point of the graph.
Worked Example — Solving by Completing the Square
Solve 2x² − 8x − 24 = 0 by completing the square
Step 1 — Divide everything by 2 (the coefficient of x²): x² − 4x − 12 = 0
Step 2 — Halve the middle number (−4 → −2) and rewrite: (x − 2)² − (−2)² − 12 = 0
Step 3 — Simplify: (x − 2)² − 4 − 12 = 0 → (x − 2)² − 16 = 0
Step 4 — Make x the subject: (x − 2)² = 16 → x − 2 = ±√16 = ±4
Step 5 — Solve both cases: x = 4 + 2 = 6, or x = −4 + 2 = −2
Answer: x = 6 or x = −2
Write 3x² − 12x + k in the form a(x + p)² + k + q, where a, p and q are constants, and k is an unknown constant.
4. Which Method Should I Use?
This is a skill examiners deliberately test — knowing WHICH tool fits the job, not just knowing all three tools individually.
| Situation | Best Method |
|---|---|
| Question explicitly says "solve by factorisation" | Factorising |
| Two-term quadratics (e.g. x² − 4x = 0, or x² − 9 = 0) | Factorising (common factor, or difference of two squares) |
| Coefficients are large or "ugly", and factorising is hard to spot | Quadratic Formula |
| Answer needs to be rounded (e.g. "to 2 d.p." or "3 s.f.") | Quadratic Formula |
| Answer needs to be exact, involving surds | Quadratic Formula (surds appear naturally) |
| Question explicitly says "complete the square" or "hence solve" | Completing the Square |
| You need the turning point of the graph | Completing the Square |
| You genuinely can't decide | Quadratic Formula — it always works! |
5. Hidden Quadratic Equations
Spotting the Disguise
A "hidden" quadratic has the exact same structure as a normal quadratic — a(something)² + b(something) + c = 0 — just wearing a costume. The "something" could be x², √x, 2ˣ, or even tan(3x). If you can see a repeating expression where one version is the square of the other, it's a hidden quadratic.
- x⁴ − 3x² − 4 = 0 is a quadratic in x² (because x⁴ = (x²)²)
- x − 3√x − 4 = 0 is a quadratic in √x (because (√x)² = x)
- 4ˣ − 3(2ˣ) − 4 = 0 is a quadratic in 2ˣ (because 4ˣ = (2²)ˣ = (2ˣ)²)
- 3tan²(3x) + 4tan(3x) − 6 = 0 is a quadratic in tan(3x)
Worked Example
Solve x − √x − 6 = 0
Step 1 — Let u = √x, so u² = x. Rewrite: u² − u − 6 = 0
Step 2 — Factorise: (u − 3)(u + 2) = 0 → u = 3 or u = −2
Step 3 — Replace u with √x: √x = 3 → x = 9. But √x = −2 has no solution, because a square root can never be negative.
Answer: x = 9 (always check by substituting back in!)
Solve x⁸ − 17x⁴ + 16 = 0.
6. Discriminants
What It Tells You Without Solving Anything
Look back at the quadratic formula — specifically the bit under the square root sign: b² − 4ac. This is called the discriminant, sometimes written as Δ (capital delta). It's incredibly useful because you can calculate it in seconds, and it tells you exactly how many real solutions a quadratic has — before you even try to solve it.
| Discriminant value | What it means | Graph behaviour |
|---|---|---|
| b² − 4ac > 0 | Two distinct real roots | Crosses the x-axis twice |
| b² − 4ac = 0 | One repeated (equal) root | Touches the x-axis once |
| b² − 4ac < 0 | No real roots | Never touches the x-axis |
Line Meets Curve: Tangent Test
The discriminant also tells you how many times a straight line crosses a curve. Set the line equal to the curve, rearrange into ax² + bx + c = 0 form, then check the discriminant. If it equals exactly 0, the line just grazes the curve — it's a tangent.
Worked Example: Show that y = 3x − 7 is tangent to y = (x + 3)(x − 2)
Step 1 — Set equal: 3x − 7 = (x + 3)(x − 2)
Step 2 — Expand and rearrange: 3x − 7 = x² + x − 6 → x² − 2x + 1 = 0
Step 3 — Discriminant: Δ = (−2)² − 4(1)(1) = 4 − 4 = 0
Since Δ = 0, the line touches the curve at exactly one point — it's a tangent. ✓
Find, in terms of k, the discriminant of 3x² + 2kx − k = kx² − 4kx + 2.
7. Quadratic Graphs
The Parabola Shape
Every quadratic graph makes a curved shape called a parabola. There are only two possible orientations, and the sign of a (the coefficient of x²) tells you instantly which one you'll get:
- a > 0 (positive) → "∪-shape" (like a smile) → has a minimum point
- a < 0 (negative) → "∩-shape" (like a frown) → has a maximum point
Worked Example — Full Sketch
Sketch y = x² − 5x + 6
Shape: a = 1 > 0 → ∪-shape
y-intercept: c = 6 → crosses y-axis at (0, 6)
Roots: factorise → (x − 2)(x − 3) = 0 → x = 2 or x = 3, so crosses x-axis at (2, 0) and (3, 0)
The turning point sits neatly between the two roots, at the minimum of the ∪-shape.
Using the Graph to Find the Range
The turning point tells you the range of a quadratic function — the set of all possible output (y) values. If the graph has a minimum point at (xₘᵢₙ, yₘᵢₙ), then the function can never produce a y-value below yₘᵢₙ, so the range is f(x) ≥ yₘᵢₙ. Similarly for a maximum point, the range is f(x) ≤ yₘₐₓ.
Sketch y = f(x) where f(x) = 2x² − 4x − 6. Find the turning point and write down the range of f(x).
8. Quadratic Inequalities
Solving with a Sketch
A quadratic inequality looks like a quadratic equation but with <, >, ≤ or ≥ instead of =. The reliable way to solve these — every single time — is to sketch the graph and read off which region of x satisfies the inequality. Trying to reason it out purely algebraically is a common source of errors.
Worked Example
Find the set of values for which 3x² + 2x − 6 > x² + 4x − 2
Step 1 — Rearrange: 3x² + 2x − 6 − x² − 4x + 2 > 0 → 2x² − 2x − 4 > 0
Step 2 — Simplify by dividing by 2: x² − x − 2 > 0
Step 3 — Factorise: (x − 2)(x + 1) > 0, so roots are x = −1 and x = 2
Step 4 — Sketch a ∪-shape through −1 and 2. We want where the graph is ABOVE the x-axis (since > 0).
Answer: x < −1 OR x > 2
Find the values of k such that (k + 1)x² − 4x + (k − 2) = 0 has no real roots. (Hint: use the discriminant to set up a quadratic inequality in k, then solve it.)
9. Inequalities on Graphs (Regions)
Shading a Region
This is a different (but related) skill: instead of one variable, these inequalities involve two — x and y. Several inequalities are drawn together on the same set of axes, and the solution isn't a set of x-values, it's a whole 2D area, usually labelled R.
What to Memorise
| Concept | Formula / Rule |
|---|---|
| Quadratic Formula | x = (−b ± √(b² − 4ac)) / 2a |
| Completing the Square (a = 1) | p = b/2, q = c − p² → y = (x + p)² + q |
| Discriminant | Δ = b² − 4ac |
| Δ > 0 | Two distinct real roots — graph crosses x-axis twice |
| Δ = 0 | One repeated root — graph touches x-axis once (tangent case) |
| Δ < 0 | No real roots — graph never meets x-axis |
| y-intercept of ax² + bx + c | Always (0, c) |
| Turning point from a(x + p)² + q | Always at (−p, q) |
| Shape rule | a > 0 → ∪ (minimum); a < 0 → ∩ (maximum) |
| Range (minimum point) | f(x) ≥ yₘᵢₙ |
| Range (maximum point) | f(x) ≤ yₘₐₓ |
| Hidden quadratic method | Substitute u = "the repeating expression", solve for u, then convert back to x |
| Solving ax²+bx+c > 0 | x < x₁ or x > x₂ (outside the roots) |
| Solving ax²+bx+c < 0 | x₁ < x < x₂ (between the roots) |
Concepts Checklist
Tick each one off only once you could explain it to someone else without looking at your notes.
Exam Tips — Common Mistakes & Mark-Scheme Traps
- Exam Tips — Common Mistakes & Mark-Scheme Traps
Read the full Quadratic Functions notes free
That's the preview — create a free account to read the rest, plus flashcards and practice questions with instant AI marking. No credit card.
Unlock the full notes free →