Completing the SquareDiscriminantPaper 01Paper 02QuadraticsRootsSection 1
Completing the square, vertex form, maximum and minimum values, the discriminant and nature of roots, sum and product of roots, equations reducible to quadratic, and simultaneous equations.
Quadratics are one of the most examined topics across both papers. Paper 01 includes four dedicated items; Paper 02 frequently builds entire questions around quadratic functions and their graphs.
The General Form
A quadratic function has the form f(x)=ax2+bx+c where a=0. Its graph is a parabola. When a>0 the parabola opens upward (minimum point); when a<0 it opens downward (maximum point).
Completing the Square
Completing the square rewrites a quadratic into vertex form: a(x+h)2+k.
The vertex (turning point) of the parabola is (−h,k), and the axis of symmetry is x=−h.
Method for ax2+bx+c:
Factor out a from the first two terms: a(x2+abx)+c
Add and subtract (2ab)2 inside the bracket.
Collect the perfect square and simplify.
Example
Express 2x2−8x+5 in the form a(x+h)2+k.
2x2−8x+5=2(x2−4x)+5
=2(x2−4x+4−4)+5
=2(x−2)2−8+5=2(x−2)2−3
Vertex: (2,−3). Since a=2>0, this is a minimum.
Maximum and Minimum Values
From vertex form a(x+h)2+k:
The minimum value of f(x) is k, occurring when x=−h (if a>0).
The maximum value of f(x) is k, occurring when x=−h (if a<0).
The range follows directly:
If a>0: range is f(x)≥k.
If a<0: range is f(x)≤k.
Exam Tip
Questions asking for the "range" of a quadratic almost always require completing the square first to identify k. Quote the range as an inequality: f(x)≥k or f(x)≤k.
Sketching Quadratic Graphs
A complete sketch of f(x)=ax2+bx+c shows:
The shape (upward or downward parabola).
The turning point from completed square form.
The y-intercept: substitute x=0 to get (0,c).
The x-intercepts (if any): solve ax2+bx+c=0.
The axis of symmetry: x=−b/(2a).
The diagram below shows all five features for y=x2−4x+3.
y = x² − 4x + 3 = (x − 1)(x − 3)
The Discriminant and Nature of Roots
For ax2+bx+c=0, the discriminant is Δ=b2−4ac.
Value of Δ
Nature of roots
Graph interpretation
Δ>0
Two distinct real roots
Parabola crosses x-axis twice
Δ=0
One repeated (equal) real root
Parabola touches x-axis once
Δ<0
No real roots
Parabola does not meet x-axis
Example
Determine the values of k for which kx2+(k−3)x+1=0 has no real roots.
For no real roots: Δ<0.
Δ=(k−3)2−4k(1)=k2−6k+9−4k=k2−10k+9
Set Δ<0: (k−1)(k−9)<0, so 1<k<9.
Also, for the equation to be quadratic, k=0. Since k=0 is outside the interval 1<k<9, the final answer is 1<k<9.
Methods of Solving Quadratic Equations
Factorisation is fastest when the quadratic factors cleanly over the integers. Look for two numbers whose product is ac and sum is b.
Completing the square works for any quadratic and gives the exact roots in surd form.
Quadratic formula: For ax2+bx+c=0,
x=2a−b±b2−4ac
Remember
When a question says "solve," any valid method is acceptable. When it says "complete the square" or "express in the form a(x+h)2+k," you must use that specific method.
Equations Reducible to a Quadratic
Some equations become quadratic after a substitution.
Common substitutions:
Equation type
Substitution
Resulting quadratic
x4−5x2+4=0
u=x2
u2−5u+4=0
x−5x+6=0
u=x
u2−5u+6=0
22x−3(2x)−4=0
u=2x
u2−3u−4=0
Example
Solve x−5x+6=0.
Let u=x (so u≥0 and x=u2):
u2−5u+6=0⇒(u−2)(u−3)=0
so u=2 or u=3. Since u=x: x=4 or x=9.
Check:4−5(2)+6=0 ✓ and 9−5(3)+6=0 ✓
Remember
An extraneous solution is a value produced by the algebra that does not satisfy the original equation. It arises because a substitution (like u=x, which requires u≥0) imposes a domain restriction that the factored quadratic silently ignores. Always verify every back-substituted solution in the original equation. Any value that fails the check must be marked (Invalid) and discarded — the algebra will not warn you automatically.
Relationships Between Roots and Coefficients
For ax2+bx+c=0 with roots α and β:
α+β=−abαβ=ac
These allow you to find expressions involving α and β without solving for them individually.
Expression
How to find it
α2+β2
(α+β)2−2αβ
α2β+αβ2
αβ(α+β)
α1+β1
αβα+β
(α−β)2
(α+β)2−4αβ
Example
The roots of 3x2−5x+2=0 are α and β. Find α2+β2.
α+β=35,αβ=32
α2+β2=(α+β)2−2αβ=925−34=925−912=913
Forming a New Quadratic with Given Roots (Vieta's Root Theorem)
If a question asks for a quadratic whose roots are some transformation of α and β, find the new sum and product, then substitute into:
x2−(Sum of Roots)x+(Product of Roots)=0
If the coefficients are not integers, multiply through by the appropriate constant so that a,b,c∈Z.
Example
The roots of 2x2−3x+1=0 are α and β. Find the quadratic with integer coefficients whose roots are α2 and β2.
From the original:
α+β=23
αβ=21
New sum:
α2+β2=(α+β)2−2αβ=49−1=45
New product:
α2β2=(αβ)2=41
Substituting into the formula:
x2−45x+41=0
Coefficients are not integers. Multiply through by 4:
4x2−5x+1=0
Simultaneous Equations: One Linear, One Non-Linear
The standard method is substitution: express one variable from the linear equation, then substitute into the quadratic (or circle) equation.
Example
Solve the system: y=x+1 and x2+y2=13.
Substitute y=x+1 into the circle:
x2+(x+1)2=13
x2+x2+2x+1=13
2x2+2x−12=0⟹x2+x−6=0⟹(x+3)(x−2)=0
x=−3 gives y=−2; x=2 gives y=3.
Solutions:(−3,−2) and (2,3).
Exam Tip
When a line intersects a circle, the discriminant of the resulting quadratic tells you about the intersection. Δ>0: two points; Δ=0: the line is a tangent; Δ<0: no intersection.