Skip to content

Quadratics

Board Coverage

BoardPaperNotes
AQAPaper 1Completing the square, discriminant, inequalities
EdexcelP1Same core content
OCR (A)Paper 1Includes set notation for solution sets
CIE (9709)P1Quadratic equations, discriminant, inequalities

1. The Quadratic Function

Definition. A quadratic function is a function of the form:

f(x)=ax2+bx+cf(x) = ax^2 + bx + c

Where a,b,cRa, b, c \in \mathbb{R} and a0a \neq 0.

The graph of y=ax2+bx+cy = ax^2 + bx + c is a parabola — a symmetrical U-shaped curve (opening upwards if a>0a > 0Downwards if a<0a < 0). The axis of symmetry is the vertical line x=b2ax = -\frac{b}{2a}.


2. Completing the Square

The technique of completing the square rewrites a quadratic in the form a(xp)2+qa(x - p)^2 + qFrom which The vertex, axis of symmetry, and extremum are immediately readable.

Theorem. Every quadratic ax2+bx+cax^2 + bx + c with a0a \neq 0 can be written in the form a(xp)2+qa(x - p)^2 + q for some p,qRp, q \in \mathbb{R}.

Proof. Factor out aa from the first two terms:

Ax2+bx+c=a(x2+bax)+c\begin{aligned} Ax^2 + bx + c &= a\left(x^2 + \frac{b}{a}x\right) + c \end{aligned}

We seek to express x2+baxx^2 + \frac{b}{a}x as a perfect square plus a constant. Recall that:

(x+d)2=x2+2dx+d2(x + d)^2 = x^2 + 2dx + d^2

We need 2d=ba2d = \frac{b}{a}So d=b2ad = \frac{b}{2a}. Then:

X2+bax=(x+b2a)2b24a2\begin{aligned} X^2 + \frac{b}{a}x &= \left(x + \frac{b}{2a}\right)^2 - \frac{b^2}{4a^2} \end{aligned}

Substituting back:

Ax2+bx+c=a[(x+b2a)2b24a2]+c=a(x+b2a)2b24a+c=a(x+b2a)2+4acb24a\begin{aligned} Ax^2 + bx + c &= a\left[\left(x + \frac{b}{2a}\right)^2 - \frac{b^2}{4a^2}\right] + c \\ &= a\left(x + \frac{b}{2a}\right)^2 - \frac{b^2}{4a} + c \\ &= a\left(x + \frac{b}{2a}\right)^2 + \frac{4ac - b^2}{4a} \end{aligned}

Setting p=b2ap = -\frac{b}{2a} and q=4acb24aq = \frac{4ac - b^2}{4a}We have ax2+bx+c=a(xp)2+qax^2 + bx + c = a(x - p)^2 + q. \blacksquare

Intuition (Geometric). Consider the expression x2+bxx^2 + bx. This represents the area of a square of Side xx plus a rectangle of dimensions x×bx \times b. We split the rectangle into two strips of x×b2x \times \frac{b}{2}And rearrange to form an L-shape. The “missing corner” to complete the Larger square is a small square of side b2\frac{b}{2}With area (b2)2=b24\left(\frac{b}{2}\right)^2 = \frac{b^2}{4}. We add and subtract this to preserve equality:

x2+bx=(x+b2)2b24x^2 + bx = \left(x + \frac{b}{2}\right)^2 - \frac{b^2}{4}

Example Write 2x212x+222x^2 - 12x + 22 in completed square form.

2x212x+22=2(x26x)+22=2[(x3)29]+22=2(x3)218+22=2(x3)2+4\begin{aligned} 2x^2 - 12x + 22 &= 2(x^2 - 6x) + 22 \\ &= 2\left[(x - 3)^2 - 9\right] + 22 \\ &= 2(x - 3)^2 - 18 + 22 \\ &= 2(x - 3)^2 + 4 \end{aligned}

The vertex is (3,4)(3, 4)And since the coefficient of (x3)2(x-3)^2 is positive, the minimum value is 44.


3. The Quadratic Formula

Theorem (Quadratic Formula). The solutions of ax2+bx+c=0ax^2 + bx + c = 0 (with a0a \neq 0) are:

x=LBb±b24acRB◆◆LB2aRBx = \frac◆LB◆-b \pm \sqrt{b^2 - 4ac}◆RB◆◆LB◆2a◆RB◆

Proof. We derive this by completing the square on ax2+bx+c=0ax^2 + bx + c = 0.

Ax2+bx+c=0X2+bax=ca(x+b2a)2b24a2=ca(x+b2a)2=b24a2ca(x+b2a)2=b24ac4a2X+b2a=±LBb24acRB◆◆LB2aRBX=LBb±b24acRB◆◆LB2aRB\begin{aligned} Ax^2 + bx + c &= 0 \\ X^2 + \frac{b}{a}x &= -\frac{c}{a} \\ \left(x + \frac{b}{2a}\right)^2 - \frac{b^2}{4a^2} &= -\frac{c}{a} \\ \left(x + \frac{b}{2a}\right)^2 &= \frac{b^2}{4a^2} - \frac{c}{a} \\ \left(x + \frac{b}{2a}\right)^2 &= \frac{b^2 - 4ac}{4a^2} \\ X + \frac{b}{2a} &= \pm\frac◆LB◆\sqrt{b^2 - 4ac}◆RB◆◆LB◆2a◆RB◆ \\ X &= \frac◆LB◆-b \pm \sqrt{b^2 - 4ac}◆RB◆◆LB◆2a◆RB◆ \quad \blacksquare \end{aligned}

Intuition. The quadratic formula is nothing more than completing the square in fully symbolic Form. Every step is reversible, so the formula is necessary and sufficient: it gives all solutions And no extraneous ones.

:::info Edexcel provides the quadratic formula in the formula booklet. AQA and OCR (A) do not — you Must memorise it. :::

:::tip Before applying the formula, check whether the equation can be solved more by Factorisation. Always check the discriminant first. :::


4. The Discriminant

Definition. The discriminant of ax2+bx+c=0ax^2 + bx + c = 0 is:

Δ=b24ac\Delta = b^2 - 4ac

Theorem. The nature of the roots of ax2+bx+c=0ax^2 + bx + c = 0 is determined by the discriminant:

ConditionNumber of RootsNature of Roots
Δ>0\Delta > 02Two distinct real roots
Δ=0\Delta = 01One repeated real root
Δ<0\Delta < 00No real roots (two complex conjugate roots)

Proof. From the quadratic formula, the roots are x=LBb±ΔRB◆◆LB2aRBx = \frac◆LB◆-b \pm \sqrt{\Delta}◆RB◆◆LB◆2a◆RB◆.

  • If Δ>0\Delta > 0: LBΔRB\sqrt◆LB◆\Delta◆RB◆ is a positive real number, giving two distinct real values.
  • If Δ=0\Delta = 0: both roots equal b2a\frac{-b}{2a}A single repeated root.
  • If Δ<0\Delta < 0: LBΔRB\sqrt◆LB◆\Delta◆RB◆ is not a real number, so no real roots exist. (Complex roots exist but are beyond this course.) \blacksquare

Example Find the set of values of kk for which x2+4x+k=0x^2 + 4x + k = 0 has two distinct real roots.

Δ=164k>0164k>0K<4\begin{aligned} \Delta &= 16 - 4k > 0 \\ 16 - 4k &> 0 \\ K &< 4 \end{aligned}

4.1 Discriminant and Graph Shape

The discriminant directly determines the position of the parabola relative to the xx-axis.

Theorem (Discriminant and Graph Position). Let f(x)=ax2+bx+cf(x) = ax^2 + bx + c with a0a \neq 0. In Completed-square form, the extremum value is f(b2a)=LBΔRB◆◆LB4aRBf\left(-\frac{b}{2a}\right) = -\frac◆LB◆\Delta◆RB◆◆LB◆4a◆RB◆. Therefore:

  • Δ>0\Delta > 0: the extremum lies on the opposite side of the xx-axis from the direction the parabola opens, so the graph crosses the xx-axis at two distinct points.
  • Δ=0\Delta = 0: the vertex lies on the xx-axis; the graph touches the axis at exactly one point.
  • Δ<0\Delta < 0: the vertex lies on the same side of the xx-axis as the direction the parabola opens, so the graph never meets the axis.

Quadratic Graph and the Discriminant

Adjust sliders a, b, c to see how the quadratic y=ax2+bx+cy = ax^2 + bx + c changes. Observe how the discriminant Δ=b24ac\Delta = b^2 - 4ac determines whether the curve crosses, touches, or misses the xx-axis.

Furthermore, when Δ<0\Delta < 0:

ConditionConclusion
a>0a > 0 and Δ<0\Delta < 0f(x)>0f(x) > 0 for all xRx \in \mathbb{R} (parabola entirely above)
a<0a < 0 and Δ<0\Delta < 0f(x)<0f(x) < 0 for all xRx \in \mathbb{R} (parabola entirely below)

Proof. From the completed-square form f(x)=a(x+b2a)2LBΔRB◆◆LB4aRBf(x) = a\left(x + \frac{b}{2a}\right)^2 - \frac◆LB◆\Delta◆RB◆◆LB◆4a◆RB◆The minimum value (when a>0a > 0) or Maximum value (when a<0a < 0) equals LBΔRB◆◆LB4aRB-\frac◆LB◆\Delta◆RB◆◆LB◆4a◆RB◆Attained at x=b2ax = -\frac{b}{2a}.

If a>0a > 0 and Δ>0\Delta > 0: the minimum is LBΔRB◆◆LB4aRB<0-\frac◆LB◆\Delta◆RB◆◆LB◆4a◆RB◆ < 0So the vertex is below the xx-axis. Since the parabola opens upward, it must cross the axis twice.

If a>0a > 0 and Δ=0\Delta = 0: the minimum is 00So the vertex sits on the xx-axis.

If a>0a > 0 and Δ<0\Delta < 0: the minimum is LBΔRB◆◆LB4aRB>0-\frac◆LB◆\Delta◆RB◆◆LB◆4a◆RB◆ > 0So the vertex is above the xx-axis, and f(x)LBΔRB◆◆LB4aRB>0f(x) \geq -\frac◆LB◆\Delta◆RB◆◆LB◆4a◆RB◆ > 0 for all xx.

The a<0a < 0 cases follow by symmetry (or by applying the above to f(x)-f(x)). \blacksquare

4.2 Repeated Roots: Geometric Interpretation

Definition. When Δ=0\Delta = 0The equation ax2+bx+c=0ax^2 + bx + c = 0 has a single repeated root α=b2a\alpha = -\frac{b}{2a}. We say α\alpha is a double root (or root of multiplicity 2), and the Quadratic factors as a(xα)2=0a(x - \alpha)^2 = 0.

Theorem (Tangent at the Vertex). If f(x)=ax2+bx+cf(x) = ax^2 + bx + c has a repeated root at α\alphaThen The tangent to y=f(x)y = f(x) at x=αx = \alpha is the line y=0y = 0 (the xx-axis itself).

Proof. Since α\alpha is a repeated root, f(α)=0f(\alpha) = 0. The derivative is f(x)=2ax+bf'(x) = 2ax + b And at the repeated root:

f(α)=2a(b2a)+b=b+b=0f'(\alpha) = 2a\left(-\frac{b}{2a}\right) + b = -b + b = 0

The tangent at x=αx = \alpha is yf(α)=f(α)(xα)y - f(\alpha) = f'(\alpha)(x - \alpha)Which gives y=0y = 0. \blacksquare

This means that when Δ=0\Delta = 0The xx-axis is tangent to the parabola at the vertex. The Parabola “kisses” the axis at one point and bounces back, rather than crossing it.

Example Show that 4x212x+9=04x^2 - 12x + 9 = 0 has a repeated root, and verify that the xx-axis is tangent at that point.

Δ=(12)24(4)(9)=144144=0\Delta = (-12)^2 - 4(4)(9) = 144 - 144 = 0Confirming a repeated root.

The repeated root is x=128=32x = \frac{12}{8} = \frac{3}{2}.

Verification: f(32)=4(94)12(32)+9=918+9=0f\left(\frac{3}{2}\right) = 4\left(\frac{9}{4}\right) - 12\left(\frac{3}{2}\right) + 9 = 9 - 18 + 9 = 0.

f(x)=8x12f'(x) = 8x - 12So f(32)=1212=0f'\left(\frac{3}{2}\right) = 12 - 12 = 0. The tangent at x=32x = \frac{3}{2} Is y=0y = 0Confirming the xx-axis is tangent to the curve.


5. Solving Quadratic Equations

5.1 By Factorisation

If ax2+bx+c=0ax^2 + bx + c = 0 can be written as (px+q)(rx+s)=0(px + q)(rx + s) = 0Then by the zero product property, x=q/px = -q/p or x=s/rx = -s/r.

5.2 By Completing the Square

Useful when the quadratic doesn’t factorise and you want to understand the geometry.

5.3 By the Formula

Always works (when Δ0\Delta \geq 0), but can be computationally heavier.


6. Quadratic Inequalities

Solving ax2+bx+c>0ax^2 + bx + c > 0 (or < 0$$\geq 0$$\leq 0) requires understanding the sign of the Quadratic across the real line.

Method.

  1. Find the roots of ax2+bx+c=0ax^2 + bx + c = 0.
  2. Sketch the parabola (knowing whether a>0a > 0 or a<0a < 0).
  3. Read off the regions where the quadratic is positive or negative.

:::caution A critical error in inequalities: when multiplying or dividing both sides by a negative Number, you must reverse the inequality sign. This is because multiplication by 1-1 is Order-reversing: if a<ba < bThen a>b-a > -b. :::

Theorem. If m<0m < 0 and a<ba < bThen ma>mbma > mb.

Proof. From a<ba < bWe have ba>0b - a > 0. Since m<0m < 0 and ba>0b - a > 0Their product m(ba)<0m(b - a) < 0. So mbma<0mb - ma < 0Giving ma>mbma > mb. \blacksquare

Example Solve x25x+6<0x^2 - 5x + 6 < 0.

Factorise: (x2)(x3)<0(x - 2)(x - 3) < 0.

The parabola opens upwards (coefficient of x2x^2 is positive). It is negative between the roots:

2<x<32 < x < 3

Example Solve x+1x23\frac{x + 1}{x - 2} \leq 3.

x+1x230x+13(x2)x20x+13x+6x202x+7x202x7x20\begin{aligned} \frac{x + 1}{x - 2} - 3 &\leq 0 \\ \frac{x + 1 - 3(x - 2)}{x - 2} &\leq 0 \\ \frac{x + 1 - 3x + 6}{x - 2} &\leq 0 \\ \frac{-2x + 7}{x - 2} &\leq 0 \\ \frac{2x - 7}{x - 2} &\geq 0 \end{aligned}

Critical values: x=72x = \frac{7}{2} (numerator zero) and x=2x = 2 (denominator zero, undefined).

Sign analysis:

Interval2x72x - 7x2x - 2Quotient
x<2x < 2--++
2<x<7/22 < x < 7/2-++-
x>7/2x > 7/2++++++

The quotient is 0\geq 0 when x72x \leq \frac{7}{2} (including equality) but x2x \neq 2.

Solution: x72x \leq \frac{7}{2}, x2x \neq 2I.e., x(,2)[72,)x \in (-\infty, 2) \cup \left[\frac{7}{2}, \infty\right).

6.1 Rigorous Sign Chart Method

Theorem (Sign of a Factored Quadratic). Let f(x)=a(xα)(xβ)f(x) = a(x - \alpha)(x - \beta) with real roots α<β\alpha < \beta and a0a \neq 0. Then the sign of ff on each interval is determined by:

IntervalSign of ff when a>0a > 0Sign of ff when a<0a < 0
x<αx < \alpha++-
α<x<β\alpha < x < \beta-++
x>βx > \beta++-

Proof. Consider a>0a > 0. For x>βx > \beta: both (xα)>0(x - \alpha) > 0 and (xβ)>0(x - \beta) > 0So f(x)>0f(x) > 0. For α<x<β\alpha < x < \beta: we have (xα)>0(x - \alpha) > 0 but (xβ)<0(x - \beta) < 0So their Product is negative and f(x)<0f(x) < 0. For x<αx < \alpha: both factors are negative, so their product is Positive and f(x)>0f(x) > 0. The a<0a < 0 case reverses all signs. \blacksquare

Corollary. For Δ=0\Delta = 0 (repeated root α\alpha): f(x)=a(xα)2f(x) = a(x - \alpha)^2 is always Non-negative when a>0a > 0 and always non-positive when a<0a < 0With equality only at x=αx = \alpha.

Method (Systematic Sign Chart).

  1. Rearrange the inequality to the form f(x)0f(x) \gtreqqless 0.
  2. Factorise f(x)f(x) into linear factors if possible.
  3. Identify all critical values: roots of the numerator, zeros of the denominator (if rational), and any points where ff is undefined.
  4. Draw a sign chart: test one point from each interval between consecutive critical values.
  5. Select the intervals that satisfy the original inequality, respecting strict (>>, <<) vs non-strict (\geq, \leq) conditions.

:::tip Tip never include points where the denominator is zero. :::

Example Solve 2x2+3x+50-2x^2 + 3x + 5 \geq 0 using a sign chart.

Factorise: 2x2+3x+5=(2x23x5)=(2x5)(x+1)-2x^2 + 3x + 5 = -(2x^2 - 3x - 5) = -(2x - 5)(x + 1).

Critical values: x=52x = \frac{5}{2} and x=1x = -1.

Sign chart for g(x)=(2x5)(x+1)g(x) = (2x - 5)(x + 1) (then apply the leading minus sign):

Interval2x52x - 5x+1x + 1g(x)g(x)g(x)-g(x)
x<1x < -1--++-
1<x<5/2-1 < x < 5/2-++-++
x>5/2x > 5/2++++++-

We need g(x)0-g(x) \geq 0Which occurs for 1x52-1 \leq x \leq \frac{5}{2}.

Solution: x[1,52]x \in \left[-1, \frac{5}{2}\right].


7. Simultaneous Equations (Linear-Quadratic)

When solving a system of one linear and one quadratic equation, we substitute the linear equation Into the quadratic.

Example. Solve simultaneously:

Y=2x+1Y=x2+x3\begin{aligned} Y &= 2x + 1 \\ Y &= x^2 + x - 3 \end{aligned}

Setting them equal:

2x+1=x2+x3X2x4=0\begin{aligned} 2x + 1 &= x^2 + x - 3 \\ X^2 - x - 4 &= 0 \end{aligned}

x=LB1±1+16RB◆◆LB2RB=LB1±17RB◆◆LB2RBx = \frac◆LB◆1 \pm \sqrt{1 + 16}◆RB◆◆LB◆2◆RB◆ = \frac◆LB◆1 \pm \sqrt{17}◆RB◆◆LB◆2◆RB◆

The discriminant is positive, confirming two intersection points — which corresponds geometrically To the line cutting the parabola twice.

:::tip The discriminant of the resulting quadratic tells you the number of intersection points Between a line and a parabola: Δ>0\Delta > 0 means 2 intersections, Δ=0\Delta = 0 means tangent, Δ<0\Delta < 0 means no intersection. :::


8. Quadratics in Disguise

Definition. A quadratic in disguise (or quadratic form equation) is an equation that is not Quadratic in its stated variable, but can be reduced to a quadratic equation by an appropriate Substitution.

Theorem. If an equation can be rewritten as a[g(x)]2+b[g(x)]+c=0a\left[g(x)\right]^2 + b\left[g(x)\right] + c = 0 For some expression g(x)g(x) and constants a0,b,ca \neq 0, b, cThen the substitution z=g(x)z = g(x) reduces It to the quadratic az2+bz+c=0az^2 + bz + c = 0.

Common Patterns.

Original FormSubstitutionReduced Equation
ax4+bx2+c=0ax^4 + bx^2 + c = 0z=x2z = x^2az2+bz+c=0az^2 + bz + c = 0
ap2x+bpx+c=0a \cdot p^{2x} + b \cdot p^x + c = 0z=pxz = p^xaz2+bz+c=0az^2 + bz + c = 0
acos2θ+bcosθ+c=0a\cos^2\theta + b\cos\theta + c = 0z=cosθz = \cos\thetaaz2+bz+c=0az^2 + bz + c = 0
asin2θ+bsinθ+c=0a\sin^2\theta + b\sin\theta + c = 0z=sinθz = \sin\thetaaz2+bz+c=0az^2 + bz + c = 0
a(x+1x)2+b(x+1x)+c=0a\left(x + \frac{1}{x}\right)^2 + b\left(x + \frac{1}{x}\right) + c = 0z=x+1xz = x + \frac{1}{x}az2+bz+c=0az^2 + bz + c = 0

:::caution After solving the reduced quadratic for zzYou must substitute back to find xx. Discard any values of zz that are incompatible with the substitution (e.g., z=x2z = x^2 requires z0z \geq 0, z=pxz = p^x requires z>0z > 0). Always verify solutions in the original equation. :::

Example Solve x413x2+36=0x^4 - 13x^2 + 36 = 0.

Let z=x2z = x^2 (note z0z \geq 0). Then z213z+36=0z^2 - 13z + 36 = 0.

Factorising: (z4)(z9)=0(z - 4)(z - 9) = 0So z=4z = 4 or z=9z = 9.

Substituting back: x2=4    x=±2x^2 = 4 \implies x = \pm 2And x2=9    x=±3x^2 = 9 \implies x = \pm 3.

Solution: x{3,2,2,3}x \in \{-3, -2, 2, 3\}.

Example Solve x+23x=0x + 2 - \frac{3}{x} = 0.

Multiply through by xx (noting x0x \neq 0):

x2+2x3=0x^2 + 2x - 3 = 0

(x+3)(x1)=0    x=3orx=1(x + 3)(x - 1) = 0 \implies x = -3 \mathrm{ or } x = 1

Now consider the related equation x2+4x2+2(x+1x)=0x^2 + \frac{4}{x^2} + 2\left(x + \frac{1}{x}\right) = 0.

Let z=x+1xz = x + \frac{1}{x}. Then z2=x2+2+1x2z^2 = x^2 + 2 + \frac{1}{x^2}So x2+1x2=z22x^2 + \frac{1}{x^2} = z^2 - 2.

The equation becomes: z22+2z=0z^2 - 2 + 2z = 0I.e., z2+2z2=0z^2 + 2z - 2 = 0.

z=LB2±4+8RB◆◆LB2RB=LB2±23RB◆◆LB2RB=1±3z = \frac◆LB◆-2 \pm \sqrt{4 + 8}◆RB◆◆LB◆2◆RB◆ = \frac◆LB◆-2 \pm 2\sqrt{3}◆RB◆◆LB◆2◆RB◆ = -1 \pm \sqrt{3}

For each value of zzSolve x+1x=zx + \frac{1}{x} = zI.e., x2zx+1=0x^2 - zx + 1 = 0 by the quadratic Formula. This yields four solutions in total (two for each value of zz), provided each resulting Discriminant is non-negative.


9. Vieta’s Formulas

Theorem (Vieta’s Formulas). If α\alpha and β\beta are the roots of ax2+bx+c=0ax^2 + bx + c = 0 with a0a \neq 0Then:

α+β=ba(SumofRoots)\alpha + \beta = -\frac{b}{a} \quad \mathrm{(Sum of Roots)}

αβ=ca(ProductofRoots)\alpha\beta = \frac{c}{a} \quad \mathrm{(Product of Roots)}

Proof. By the factor theorem, since α\alpha and β\beta are roots of ax2+bx+c=0ax^2 + bx + c = 0We can Write:

ax2+bx+c=a(xα)(xβ)ax^2 + bx + c = a(x - \alpha)(x - \beta)

Expanding the right-hand side:

a(xα)(xβ)=a[x2(α+β)x+αβ]=ax2a(α+β)x+aαβa(x - \alpha)(x - \beta) = a\left[x^2 - (\alpha + \beta)x + \alpha\beta\right] = ax^2 - a(\alpha + \beta)x + a\alpha\beta

Equating coefficients with ax2+bx+cax^2 + bx + c:

  • Coefficient of xx: b=a(α+β)b = -a(\alpha + \beta)Hence α+β=ba\alpha + \beta = -\frac{b}{a}.
  • Constant term: c=aαβc = a\alpha\betaHence αβ=ca\alpha\beta = \frac{c}{a}.

\blacksquare

Corollary (Monic Case). For a monic quadratic x2+bx+c=0x^2 + bx + c = 0:

α+β=bandαβ=c\alpha + \beta = -b \quad \mathrm{and} \quad \alpha\beta = c

9.1 Relationship Between Roots and Coefficients

Vieta’s formulas allow us to deduce properties of the roots directly from the coefficients, without Solving the equation.

Theorem (Sign of Roots). Let α\alpha and β\beta be real roots of ax2+bx+c=0ax^2 + bx + c = 0 with a>0a > 0 and Δ0\Delta \geq 0. Then:

Condition on RootsCondition on CoefficientsVia Vieta
Both roots positiveb<0b < 0 and c>0c > 0α+β>0\alpha + \beta > 0 and αβ>0\alpha\beta > 0
Both roots negativeb>0b > 0 and c>0c > 0α+β<0\alpha + \beta < 0 and αβ>0\alpha\beta > 0
Roots of opposite signc<0c < 0αβ<0\alpha\beta < 0
One root is zeroc=0c = 0αβ=0\alpha\beta = 0

Proof. We prove the first case; the others follow similarly.

Both roots positive means α+β>0\alpha + \beta > 0 and αβ>0\alpha\beta > 0. By Vieta: α+β=ba\alpha + \beta = -\frac{b}{a}So ba>0    b<0-\frac{b}{a} > 0 \implies b < 0 (since a>0a > 0). Also αβ=ca\alpha\beta = \frac{c}{a}So ca>0    c>0\frac{c}{a} > 0 \implies c > 0.

Conversely, if b<0b < 0 and c>0c > 0Then α+β=ba>0\alpha + \beta = -\frac{b}{a} > 0 and αβ=ca>0\alpha\beta = \frac{c}{a} > 0. Since both the sum and product are positive, both roots must be Positive (if one were negative and the other positive, their product would be negative; if both were Negative, their sum would be negative). \blacksquare

9.2 Constructing Equations from Roots

Given two numbers α\alpha and β\betaThe monic quadratic with those roots is:

x2(α+β)x+αβ=0x^2 - (\alpha + \beta)x + \alpha\beta = 0

More generally, the quadratic with leading coefficient aa is:

ax2a(α+β)x+aαβ=0ax^2 - a(\alpha + \beta)x + a\alpha\beta = 0

Example Find the quadratic equation with roots α=3\alpha = 3 and β=5\beta = -5.

Sum: α+β=2\alpha + \beta = -2. Product: αβ=15\alpha\beta = -15.

Monic equation: x2(2)x+(15)=0x^2 - (-2)x + (-15) = 0I.e., x2+2x15=0x^2 + 2x - 15 = 0.

Verification: (x3)(x+5)=x2+2x15(x - 3)(x + 5) = x^2 + 2x - 15. Correct.

9.3 Symmetric Functions of Roots

A symmetric function of α\alpha and β\beta is one that is unchanged when α\alpha and β\beta Are swapped. Vieta’s formulas allow us to evaluate many symmetric functions without finding the Roots individually.

Common Identities.

α2+β2=(α+β)22αβ\alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta

α3+β3=(α+β)33αβ(α+β)\alpha^3 + \beta^3 = (\alpha + \beta)^3 - 3\alpha\beta(\alpha + \beta)

LB1RB◆◆LBαRB+LB1RB◆◆LBβRB=LBα+βRB◆◆LBαβRB\frac◆LB◆1◆RB◆◆LB◆\alpha◆RB◆ + \frac◆LB◆1◆RB◆◆LB◆\beta◆RB◆ = \frac◆LB◆\alpha + \beta◆RB◆◆LB◆\alpha\beta◆RB◆

α2β+αβ2=αβ(α+β)\alpha^2\beta + \alpha\beta^2 = \alpha\beta(\alpha + \beta)

(αβ)2=(α+β)24αβ(\alpha - \beta)^2 = (\alpha + \beta)^2 - 4\alpha\beta

Example The roots of 2x28x+3=02x^2 - 8x + 3 = 0 are α\alpha and β\beta. Without solving the equation, find α2+β2\alpha^2 + \beta^2 and LB1RB◆◆LBαRB+LB1RB◆◆LBβRB\frac◆LB◆1◆RB◆◆LB◆\alpha◆RB◆ + \frac◆LB◆1◆RB◆◆LB◆\beta◆RB◆.

From Vieta: α+β=82=4\alpha + \beta = \frac{8}{2} = 4 and αβ=32\alpha\beta = \frac{3}{2}.

α2+β2=(α+β)22αβ=163=13\alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta = 16 - 3 = 13.

LB1RB◆◆LBαRB+LB1RB◆◆LBβRB=LBα+βRB◆◆LBαβRB=43/2=83\frac◆LB◆1◆RB◆◆LB◆\alpha◆RB◆ + \frac◆LB◆1◆RB◆◆LB◆\beta◆RB◆ = \frac◆LB◆\alpha + \beta◆RB◆◆LB◆\alpha\beta◆RB◆ = \frac{4}{3/2} = \frac{8}{3}.

Example The roots of x25x+2=0x^2 - 5x + 2 = 0 are α\alpha and β\beta. Find a quadratic equation whose roots are α2\alpha^2 and β2\beta^2.

We need the sum S=α2+β2S = \alpha^2 + \beta^2 and product P=α2β2P = \alpha^2 \beta^2.

S=(α+β)22αβ=254=21S = (\alpha + \beta)^2 - 2\alpha\beta = 25 - 4 = 21.

P=(αβ)2=4P = (\alpha\beta)^2 = 4.

The required equation is x2Sx+P=0x^2 - Sx + P = 0I.e., x221x+4=0x^2 - 21x + 4 = 0.


10. Applying Quadratic Theory to Other Equations

Many equations that are not quadratic can be solved by recognising quadratic structure or By algebraic manipulation that produces a quadratic.

10.1 Exponential Equations

Method. For equations of the form ap2x+bpx+c=0a \cdot p^{2x} + b \cdot p^x + c = 0 where p>0p > 0 Substitute u=pxu = p^x (so u>0u > 0) to obtain a quadratic in uu. After solving, take logarithms to Recover xx.

Example Solve 32x43x5=03^{2x} - 4 \cdot 3^x - 5 = 0.

Let u=3xu = 3^x (u>0u > 0). The equation becomes:

u24u5=0u^2 - 4u - 5 = 0

(u5)(u+1)=0(u - 5)(u + 1) = 0

u=5u = 5 or u=1u = -1. Since u>0u > 0Reject u=1u = -1.

3x=5    x=log35=LBln5RB◆◆LBln3RB3^x = 5 \implies x = \log_3 5 = \frac◆LB◆\ln 5◆RB◆◆LB◆\ln 3◆RB◆.

10.2 Trigonometric Equations

Method. Equations such as acos2θ+bcosθ+c=0a\cos^2\theta + b\cos\theta + c = 0 are quadratic in cosθ\cos\theta. Solve for the trigonometric ratio, then find θ\theta within the specified interval. Always check That the values fall within the valid range [1,1][-1, 1].

Example Solve 2cos2θcosθ1=02\cos^2\theta - \cos\theta - 1 = 0 for 0θ2π0 \leq \theta \leq 2\pi.

Let u=cosθu = \cos\theta with 1u1-1 \leq u \leq 1:

2u2u1=0    (2u+1)(u1)=02u^2 - u - 1 = 0 \implies (2u + 1)(u - 1) = 0

u=12u = -\frac{1}{2} or u=1u = 1. Both lie in [1,1][-1, 1].

cosθ=12    θ=LB2πRB◆◆LB3RB,LB4πRB◆◆LB3RB\cos\theta = -\frac{1}{2} \implies \theta = \frac◆LB◆2\pi◆RB◆◆LB◆3◆RB◆, \frac◆LB◆4\pi◆RB◆◆LB◆3◆RB◆.

cosθ=1    θ=0,2π\cos\theta = 1 \implies \theta = 0, 2\pi.

Solution: θ{0,LB2πRB◆◆LB3RB,LB4πRB◆◆LB3RB,2π}\theta \in \left\{0, \frac◆LB◆2\pi◆RB◆◆LB◆3◆RB◆, \frac◆LB◆4\pi◆RB◆◆LB◆3◆RB◆, 2\pi\right\}.

10.3 Equations with Square Roots

Equations involving f(x)\sqrt{f(x)} can sometimes be reduced to quadratics by isolating the radical And squaring both sides.

:::caution Squaring both sides of an equation is not reversible — it can introduce extraneous Solutions. You must always substitute every candidate solution back into the original equation To verify it. :::

Example Solve 2x+1=x1\sqrt{2x + 1} = x - 1.

First, note the domain restrictions: 2x+102x + 1 \geq 0 (so x1/2x \geq -1/2) and x10x - 1 \geq 0 (so x1x \geq 1) since a square root is non-negative.

Squaring both sides: 2x+1=(x1)2=x22x+12x + 1 = (x - 1)^2 = x^2 - 2x + 1.

x24x=0    x(x4)=0    x=0orx=4x^2 - 4x = 0 \implies x(x - 4) = 0 \implies x = 0 \mathrm{ or } x = 4

Check x=0x = 0: 1=1\sqrt{1} = -1? No, 111 \neq -1. Reject (also fails x1x \geq 1).

Check x=4x = 4: 9=3\sqrt{9} = 3? Yes, 3=33 = 3. Accept.

Solution: x=4x = 4.


11. Problem Set

Problem 1. Write 3x212x+73x^2 - 12x + 7 in the form a(xp)2+qa(x - p)^2 + qAnd hence state the minimum Value and the value of xx at which it occurs.

Solution3x212x+7=3(x24x)+7=3[(x2)24]+7=3(x2)212+7=3(x2)25\begin{aligned} 3x^2 - 12x + 7 &= 3(x^2 - 4x) + 7 \\ &= 3\left[(x - 2)^2 - 4\right] + 7 \\ &= 3(x - 2)^2 - 12 + 7 \\ &= 3(x - 2)^2 - 5 \end{aligned}

Minimum value is 5-5Occurring at x=2x = 2.

If you get this wrong, revise: Completing the square


Problem 2. Solve 2x2+5x4=02x^2 + 5x - 4 = 0Giving your answer in the form a±bca \pm b\sqrt{c}.

SolutionX=LB5±25+32RB◆◆LB4RB=LB5±57RB◆◆LB4RB\begin{aligned} X &= \frac◆LB◆-5 \pm \sqrt{25 + 32}◆RB◆◆LB◆4◆RB◆ = \frac◆LB◆-5 \pm \sqrt{57}◆RB◆◆LB◆4◆RB◆ \end{aligned}

If you get this wrong, revise: Quadratic formula


Problem 3. Find the range of values of kk for which kx26x+4=0kx^2 - 6x + 4 = 0 has real roots.

Solution We need Δ0\Delta \geq 0:

3616k0K3616=94\begin{aligned} 36 - 16k &\geq 0 \\ K &\leq \frac{36}{16} = \frac{9}{4} \end{aligned}

Note: k0k \neq 0 (otherwise it’s not quadratic). If k=0k = 0The equation 6x+4=0-6x + 4 = 0 still has a Real root, so the condition is k94k \leq \frac{9}{4} with kk real (including k=0k = 0Which gives a Linear equation).

If you get this wrong, revise: Discriminant


Problem 4. Solve the inequality x23x10>0x^2 - 3x - 10 > 0.

Solution Factorise: (x5)(x+2)>0(x - 5)(x + 2) > 0.

The parabola opens upwards. It is positive outside the roots:

x<2orx>5x < -2 \quad \mathrm{or} \quad x > 5

In set notation: x(,2)(5,)x \in (-\infty, -2) \cup (5, \infty).

If you get this wrong, revise: Quadratic inequalities


Problem 5. Solve the simultaneous equations y=x1y = x - 1 and x2+y2=13x^2 + y^2 = 13.

Solution Substitute y=x1y = x - 1 into x2+(x1)2=13x^2 + (x-1)^2 = 13:

X2+x22x+1=132x22x12=0X2x6=0(x3)(x+2)=0\begin{aligned} X^2 + x^2 - 2x + 1 &= 13 \\ 2x^2 - 2x - 12 &= 0 \\ X^2 - x - 6 &= 0 \\ (x - 3)(x + 2) &= 0 \end{aligned}

x=3x = 3: y=2y = 2. Point: (3,2)(3, 2).

x=2x = -2: y=3y = -3. Point: (2,3)(-2, -3).

If you get this wrong, revise: Simultaneous equations


Problem 6. The function f(x)=px2+qx+rf(x) = px^2 + qx + r has a minimum value of 5-5 at x=2x = 2And Passes through the point (0,7)(0, 7). Find pp, qqAnd rr.

Solution In completed square form: f(x)=p(x2)25f(x) = p(x - 2)^2 - 5.

Since f(0)=7f(0) = 7:

P(02)25=74p=12P=3\begin{aligned} P(0 - 2)^2 - 5 &= 7 \\ 4p &= 12 \\ P &= 3 \end{aligned}

So f(x)=3(x2)25=3(x24x+4)5=3x212x+7f(x) = 3(x - 2)^2 - 5 = 3(x^2 - 4x + 4) - 5 = 3x^2 - 12x + 7.

Therefore p = 3$$q = -12$$r = 7.

If you get this wrong, revise: Completing the square


Problem 7. Show that x2+4x+9>0x^2 + 4x + 9 > 0 for all real xx.

Solution Completing the square:

x2+4x+9=(x+2)2+5x^2 + 4x + 9 = (x + 2)^2 + 5

Since (x+2)20(x+2)^2 \geq 0 for all xxWe have (x+2)2+55>0(x+2)^2 + 5 \geq 5 > 0 for all xx. \blacksquare

Alternatively: Δ=1636=20<0\Delta = 16 - 36 = -20 < 0And since the coefficient of x2x^2 is positive, the Parabola is always above the xx-axis.

If you get this wrong, revise: Discriminant


Problem 8. Express 2x28x+5x3\frac{2x^2 - 8x + 5}{x - 3} in the form Ax+B+Cx3Ax + B + \frac{C}{x - 3}.

Solution By polynomial division:

2x2÷x=2x2x^2 \div x = 2x. Multiply: 2x(x3)=2x26x2x(x-3) = 2x^2 - 6x. Subtract: 2x+5-2x + 5.

2x÷x=2-2x \div x = -2. Multiply: 2(x3)=2x+6-2(x-3) = -2x + 6. Subtract: 1-1.

So 2x28x+5x3=2x21x3\frac{2x^2 - 8x + 5}{x - 3} = 2x - 2 - \frac{1}{x - 3}.

Therefore A = 2$$B = -2$$C = -1.

If you get this wrong, revise: Polynomial division


Problem 9. Find the equation of the tangent to the curve y=x24x+3y = x^2 - 4x + 3 at the point where x=1x = 1.

Solution At x=1x = 1: y=14+3=0y = 1 - 4 + 3 = 0. The point is (1,0)(1, 0).

The gradient is dydx=2x4\frac{dy}{dx} = 2x - 4. At x=1x = 1: dydx=2\frac{dy}{dx} = -2.

Using yy1=m(xx1)y - y_1 = m(x - x_1):

y0=2(x1)    y=2x+2y - 0 = -2(x - 1) \implies y = -2x + 2

If you get this wrong, revise: Differentiation


Problem 10. Prove that the equation x2+2kx+k2+1=0x^2 + 2kx + k^2 + 1 = 0 has no real roots for any real Value of kk.

SolutionΔ=(2k)24(1)(k2+1)=4k24k24=4<0\begin{aligned} \Delta &= (2k)^2 - 4(1)(k^2 + 1) \\ &= 4k^2 - 4k^2 - 4 \\ &= -4 < 0 \end{aligned}

Since Δ=4<0\Delta = -4 < 0 for all kRk \in \mathbb{R}There are no real roots. \blacksquare

If you get this wrong, revise: Discriminant


Problem 11. A rectangle has length (x+5)(x + 5) cm and width (x+2)(x + 2) cm. The area is 30cm230\mathrm{ cm}^2. Find xx.

Solution (x+5)(x+2)=30(x + 5)(x + 2) = 30 x2+7x+10=30x^2 + 7x + 10 = 30 x2+7x20=0x^2 + 7x - 20 = 0

x=LB7±49+80RB◆◆LB2RB=LB7±129RB◆◆LB2RBx = \frac◆LB◆-7 \pm \sqrt{49 + 80}◆RB◆◆LB◆2◆RB◆ = \frac◆LB◆-7 \pm \sqrt{129}◆RB◆◆LB◆2◆RB◆

Since length and width must be positive, x>2x > -2So:

x=LB7+129RB◆◆LB2RB2.18x = \frac◆LB◆-7 + \sqrt{129}◆RB◆◆LB◆2◆RB◆ \approx 2.18

If you get this wrong, revise: Quadratic formula


Problem 12. Given f(x)=x26x+14f(x) = x^2 - 6x + 14Find the range of ff and solve f(x)10f(x) \leq 10.

Solution f(x)=(x3)2+5f(x) = (x - 3)^2 + 5

Since (x3)20(x - 3)^2 \geq 0We have f(x)5f(x) \geq 5. Range: f(x)[5,)f(x) \in [5, \infty).

For f(x)10f(x) \leq 10:

(x3)2+510    (x3)25    5x35(x - 3)^2 + 5 \leq 10 \implies (x - 3)^2 \leq 5 \implies -\sqrt{5} \leq x - 3 \leq \sqrt{5}

35x3+53 - \sqrt{5} \leq x \leq 3 + \sqrt{5}

If you get this wrong, revise: Completing the square and Quadratic inequalities


Problem 13. Solve x413x2+36=0x^4 - 13x^2 + 36 = 0.

Solution Let z=x2z = x^2 (so z0z \geq 0). Then z213z+36=0z^2 - 13z + 36 = 0.

(z4)(z9)=0(z - 4)(z - 9) = 0

z=4z = 4 or z=9z = 9.

x2=4    x=±2x^2 = 4 \implies x = \pm 2And x2=9    x=±3x^2 = 9 \implies x = \pm 3.

Solution: x{3,2,2,3}x \in \{-3, -2, 2, 3\}.

If you get this wrong, revise: Quadratics in disguise


Problem 14. The roots of 3x25x+1=03x^2 - 5x + 1 = 0 are α\alpha and β\beta. Without solving the Equation, find α2+β2\alpha^2 + \beta^2 and α3+β3\alpha^3 + \beta^3.

Solution From Vieta’s formulas: α+β=53\alpha + \beta = \frac{5}{3} and αβ=13\alpha\beta = \frac{1}{3}.

α2+β2=(α+β)22αβ=25923=25969=199\alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta = \frac{25}{9} - \frac{2}{3} = \frac{25}{9} - \frac{6}{9} = \frac{19}{9}.

α3+β3=(α+β)33αβ(α+β)=1252731353=1252753=125274527=8027\alpha^3 + \beta^3 = (\alpha + \beta)^3 - 3\alpha\beta(\alpha + \beta) = \frac{125}{27} - 3 \cdot \frac{1}{3} \cdot \frac{5}{3} = \frac{125}{27} - \frac{5}{3} = \frac{125}{27} - \frac{45}{27} = \frac{80}{27}.

If you get this wrong, revise: Vieta’s formulas


Problem 15. Solve 42x54x+4=04^{2x} - 5 \cdot 4^x + 4 = 0.

Solution Let u=4xu = 4^x (u>0u > 0). Then u25u+4=0u^2 - 5u + 4 = 0.

(u1)(u4)=0(u - 1)(u - 4) = 0

u=1u = 1 or u=4u = 4.

4x=1    x=04^x = 1 \implies x = 0And 4x=4    x=14^x = 4 \implies x = 1.

Solution: x=0x = 0 or x=1x = 1.

If you get this wrong, revise: Applying quadratic theory


Problem 16. The curve y=(k2)x2+3x+k4y = (k - 2)x^2 + 3x + k - 4 is tangent to the xx-axis. Find the Possible values of kk.

Solution For the curve to be tangent to the xx-axis, we need Δ=0\Delta = 0:

Δ=94(k2)(k4)=0\Delta = 9 - 4(k - 2)(k - 4) = 0

94(k26k+8)=09 - 4(k^2 - 6k + 8) = 0

94k2+24k32=09 - 4k^2 + 24k - 32 = 0

4k224k+23=04k^2 - 24k + 23 = 0

k=LB24±576368RB◆◆LB8RB=LB24±208RB◆◆LB8RB=LB24±413RB◆◆LB8RB=LB6±13RB◆◆LB2RBk = \frac◆LB◆24 \pm \sqrt{576 - 368}◆RB◆◆LB◆8◆RB◆ = \frac◆LB◆24 \pm \sqrt{208}◆RB◆◆LB◆8◆RB◆ = \frac◆LB◆24 \pm 4\sqrt{13}◆RB◆◆LB◆8◆RB◆ = \frac◆LB◆6 \pm \sqrt{13}◆RB◆◆LB◆2◆RB◆

We also require k2k \neq 2 (otherwise the equation is linear, not quadratic). Since LB6±13RB◆◆LB2RB2\frac◆LB◆6 \pm \sqrt{13}◆RB◆◆LB◆2◆RB◆ \neq 2 (because 6±1346 \pm \sqrt{13} \neq 4), both values are valid.

If you get this wrong, revise: Discriminant and graph shape


Problem 17. Solve the inequality x2+2x80x^2 + 2x - 8 \leq 0 using a sign chart, giving your answer in Set notation.

Solution Factorise: (x+4)(x2)0(x + 4)(x - 2) \leq 0.

Critical values: x=4x = -4 and x=2x = 2.

Sign chart:

Intervalx+4x + 4x2x - 2Product
x<4x < -4--++
4<x<2-4 < x < 2++--
x>2x > 2++++++

The product is 0\leq 0 for 4x2-4 \leq x \leq 2.

Solution: x[4,2]x \in [-4, 2].

If you get this wrong, revise: Quadratic inequalities


Problem 18. Solve 2sin2θ+3sinθ2=02\sin^2\theta + 3\sin\theta - 2 = 0 for 0θ<2π0 \leq \theta < 2\pi.

Solution Let u=sinθu = \sin\theta with 1u1-1 \leq u \leq 1:

2u2+3u2=0    (2u1)(u+2)=02u^2 + 3u - 2 = 0 \implies (2u - 1)(u + 2) = 0

u=12u = \frac{1}{2} or u=2u = -2.

Since 1sinθ1-1 \leq \sin\theta \leq 1We reject u=2u = -2.

sinθ=12    θ=LBπRB◆◆LB6RB\sin\theta = \frac{1}{2} \implies \theta = \frac◆LB◆\pi◆RB◆◆LB◆6◆RB◆ or θ=LB5πRB◆◆LB6RB\theta = \frac◆LB◆5\pi◆RB◆◆LB◆6◆RB◆.

Solution: θ{LBπRB◆◆LB6RB,LB5πRB◆◆LB6RB}\theta \in \left\{\frac◆LB◆\pi◆RB◆◆LB◆6◆RB◆, \frac◆LB◆5\pi◆RB◆◆LB◆6◆RB◆\right\}.

If you get this wrong, revise: Applying quadratic theory


:::tip Diagnostic Test Ready to test your understanding of Quadratics? The contains the hardest questions within the A-Level specification for this topic, each with a full worked solution.

Unit tests probe edge cases and common misconceptions. Integration tests combine Quadratics with other pure mathematics topics to test synthesis under exam conditions.

See for instructions on self-marking and building a personal test matrix.

Common Pitfalls

  1. Losing marks by not showing sufficient working — always write out each step, especially in proof questions.

  2. Incorrectly applying integration by parts by choosing uu and dvdx\frac{dv}{dx} the wrong way around.

  3. Misreading the question, particularly with ‘hence’ vs ‘hence or otherwise’ — the former requires using previous work.

  4. Rounding too early in multi-step calculations — carry full precision through and round only the final answer.

Summary

The key principles covered in this topic are linked in the sub-pages above. Focus on understanding the definitions, applying the formulas or frameworks, and evaluating strengths and limitations of each approach.

Worked Examples

Worked examples demonstrating the application of key concepts are covered in the detailed sub-pages linked above.

:::