Algebra 6 of 6 Solving Equations
Your Progress
11%

= Solving Equations — Algebra 6

Solving an equation means finding the value(s) of the unknown that make the equation true. This is the culmination of all the algebra skills you’ve built — expressions, indices, expanding, factorising and rearranging all come together here.

Linear equations Quadratic by factorising Quadratic formula The discriminant Simultaneous equations
Three types of equation you need to solve in T Level / Level 3 Engineering LINEAR (one solution) 3x + 7 = 22 x = 5 QUADRATIC (up to 2 solutions) x² − 5x + 6 = 0 x=2 or x=3 SIMULTANEOUS (pair) 2x+y=7, x+y=4 x=3, y=1
What does “solving” mean?

Finding the value(s) that make the equation true. In x² − 5x + 6 = 0, substituting x=2 gives 4 − 10 + 6 = 0 ✔ — that’s a solution!

Solution: a value that makes both sides equal
Root: same as solution (used for quadratics)
Check: always substitute back to verify!
💡 Always substitute your answer back into the original equation to check. This catches errors before they cost marks!
Which method to use?
  1. Linear (no x²) — rearrange using inverse operations
  2. Quadratic — can factorise — always try factorising first (faster)
  3. Quadratic — won’t factorise — use the quadratic formula
  4. Two equations, two unknowns — simultaneous equations
📌 In T Level exams, quadratic equations almost always factorise neatly. Try factorising first — if you can’t find integer pairs within 30 seconds, switch to the formula.

Solving Linear Equations

A linear equation has no x² or higher powers — just x. The strategy is always the same: collect x terms on one side, numbers on the other, then divide.

Strategy: Expand brackets → collect x terms on one side → collect numbers on the other → divide to find x.
Solve 3x + 7 = 22 — step by step START 3x + 7 = 22 Subtract 7 from both sides STEP 1 3x = 15 Divide both sides by 3 ANSWER x = 5 ✅ Check: 3(5) + 7 = 15 + 7 = 22 ✔ Always substitute back into the ORIGINAL equation to verify
Equations with x on both sides
Solve: 5x − 3 = 2x + 9
Collect x: 5x − 2x = 9 + 3
Simplify: 3x = 12
Divide: x = 12/3
Answer: x = 4   Check: 5(4)−3=17, 2(4)+9=17 ✔
Equations with brackets
Solve: 3(2x − 1) = 2(x + 7)
Expand: 6x − 3 = 2x + 14
Collect x: 4x = 17
Answer: x = 17/4 = 4.25 ✅
⚙ Solve: 4(t − 2) = 3(t + 1) for time t
Expand: 4t − 8 = 3t + 3
Collect t: t = 11
Answer: t = 11 s ✅
⚠️ Most common error: Moving a term without changing its sign.
5x − 3 = 2x + 9   →   5x − 2x = 9 + 3   (the −3 becomes +3 when it crosses the = sign)
🧩

Solving Quadratics by Factorising

The fastest method when it works. Factorise the quadratic, then use the zero product rule: if two things multiply to give zero, at least one of them must be zero.

Zero product rule: If A × B = 0, then A = 0 OR B = 0 (or both). This is the key that unlocks quadratic equations!
Solve x² + 7x + 12 = 0 — factorise then apply zero product rule STEP 1 — Factorise the quadratic (x + 3)(x + 4) = 0 Apply zero product rule STEP 2 — Either bracket could be zero x + 3 = 0 OR x + 4 = 0 Solve each mini-equation FROM x+3=0 x = −3 FROM x+4=0 x = −4 Both answers: x = −3 or x = −4 ✅ Check x=−3: (−3)²+7(−3)+12 = 9−21+12 = 0 ✔
Step-by-step method
  1. Rearrange so everything is on one side: ax² + bx + c = 0
  2. Factorise the left side completely
  3. Set each bracket equal to zero: bracket = 0
  4. Solve each simple equation to find x
  5. Check both answers by substituting back in
✅ A quadratic can have 2, 1 or 0 real solutions. The discriminant (next tab) tells you which.
More worked examples
Solve: x² − 9x + 20 = 0
Factorise: need ×=20, +=−9 → −4 and −5
Brackets: (x − 4)(x − 5) = 0
Solve: x = 4 or x = 5 ✅
Solve: x² − 4x = 0   (no constant!)
Factorise: x(x − 4) = 0
Solve: x = 0 or x − 4 = 0
Answer: x = 0 or x = 4 ✅
🧮

The Quadratic Formula

When factorising is difficult or impossible, the quadratic formula always works. It gives the exact solutions to any quadratic equation — even ones with decimal or irrational roots.

The Quadratic Formula — for ax² + bx + c = 0 x = −b ± ( b 2 4 a c ) 2 a −b coeff of x, negated b²−4ac (discriminant) inside the square root — brackets make it clear 2a 2 × coeff of x²
How to use it
  1. Write in the form ax² + bx + c = 0 and read off a, b, c
  2. Calculate the discriminant: b² − 4ac
  3. If discriminant < 0: no real solutions. If ≥ 0: continue
  4. Substitute into formula — calculate + version and − version separately
  5. Simplify each answer
⚠️ The ± sign gives TWO calculations. Do them separately! One uses +√ (larger root), the other uses −√ (smaller root).
Worked: 2x² + 5x − 3 = 0
Solve: 2x² + 5x − 3 = 0
a=2, b=5, c=−3
b²−4ac: 25 − 4(2)(−3) = 25 + 24 = 49
√49 = 7
x = (+): (−5 + 7) / 4 = 2/4 = 0.5
x = (−): (−5 − 7) / 4 = −12/4 = −3
Answer: x = 0.5 or x = −3 ✅
Solve: x² − 6x + 7 = 0   (won’t factorise neatly — use the formula)
a=1, b=−6, c=7
Discriminant: 36 − 28 = 8
√8 = 2√2 ≈ 2.828
x = (+): (6 + 2.828)/2 = 4.414
x = (−): (6 − 2.828)/2 = 1.586
Answer: x = 4.41 or x = 1.59 (3 s.f.) ✅

The Discriminant

The expression b² − 4ac inside the square root tells you how many real solutions a quadratic has — before you even solve it. It’s a powerful tool for checking and engineering design.

The discriminant b²−4ac tells you how many solutions exist b²−4ac < 0 No real solutions Parabola doesn’t cross x-axis b²−4ac = 0 One repeated solution Parabola just touches x-axis b²−4ac > 0 Two distinct solutions Parabola crosses x-axis twice
Using the discriminant
b²−4ac < 0 → 0 real roots   (no solution)
b²−4ac = 0 → 1 repeated root
b²−4ac > 0 → 2 distinct real roots
📌 In engineering this tells you whether a system has a physically meaningful solution before you waste time solving it fully.
Worked Examples
How many solutions has: x² − 4x + 5 = 0?
a=1,b=−4,c=5
Discriminant: (−4)² − 4(1)(5) = 16 − 20 = −4
Answer: −4 < 0 → No real solutions ✅
Find k so that x² + kx + 9 = 0 has one solution
Condition: b² − 4ac = 0
Substitute: k² − 36 = 0
Solve: k = ±6 ✅

Complex Factorising Problems

Harder quadratics where a ≠ 1, expressions that need rearranging first, equations disguised as higher powers, and quadratics in disguise. These are the T Level challenge problems.

Type 1 — Rearrange firstAlways get to ax²+bx+c=0 before factorising
Solve: 2x² + 3x = 5
Rearrange: 2x² + 3x − 5 = 0
AC method: ac=−10, b=3 → 5 and −2
Split: 2x² + 5x − 2x − 5 = 0
Group: x(2x+5) − 1(2x+5) = 0
Factor: (2x+5)(x−1) = 0
Answer: x = −2.5 or x = 1 ✅
Type 2 — Hidden common factor first
Solve: 3x² − 12x + 9 = 0
Divide by 3: x² − 4x + 3 = 0   (always simplify first!)
Factorise: need ×=3, +=−4 → −1 and −3
Brackets: (x−1)(x−3) = 0
Answer: x = 1 or x = 3 ✅
Type 3 — Expand brackets first
Solve: (x+2)(x−3) = 6
Expand: x² − x − 6 = 6
Rearrange: x² − x − 12 = 0
Factorise: (x−4)(x+3) = 0
Answer: x = 4 or x = −3 ✅
Type 4 — Quadratic in disguiseSubstitute u = x² to reveal hidden quadratic
Solve: x⁴ − 5x² + 4 = 0
Let u=x²: u² − 5u + 4 = 0
Factorise u: (u−1)(u−4) = 0
u=1 or u=4
x²=1: x = ±1
x²=4: x = ±2   All 4 roots: x=1,−1,2,−2 ✅
Type 5 — Harder ax²+bx+c using AC method6x² + 11x − 10 = 0
Full AC method: 6x² + 11x − 10 = 0
a=6,b=11,c=−10 ac = −60
Find p,q: p×q=−60, p+q=11 → 15 and −4
Split 11x: 6x² + 15x − 4x − 10 = 0
Group: 3x(2x+5) − 2(2x+5) = 0
Factor out: (2x+5)(3x−2) = 0
Answer: x = −2.5 or x = 2/3 ✅
⚙ Engineering context: 6x² + 11x − 10 = 0 where x = dimension in mm
Roots: x = −2.5 or x = 2/3
Physical: dimension can’t be negative
Discard: x = −2.5
Answer: x = 2/3 mm ≈ 0.667 mm ✅
🔀

Simultaneous Equations

Two equations, two unknowns. Solve both at the same time using elimination or substitution. Essential for circuit analysis, force balance and any problem with two related unknowns.

Method 1 — EliminationAdd or subtract equations to remove one variable
  1. Match coefficients — multiply equations so one variable has equal coefficients
  2. Add or subtract the equations to eliminate that variable
  3. Solve the resulting single equation
  4. Substitute back to find the second variable
  5. Check in BOTH original equations
Solve: 3x + 2y = 16   and   x + 2y = 8
Subtract: (3x+2y) − (x+2y) = 16−8
Simplify: 2x = 8 → x = 4
Substitute: 4 + 2y = 8 → 2y = 4 → y = 2
Answer: x = 4, y = 2 ✅
Method 2 — SubstitutionRearrange one equation and substitute into the other
  1. Rearrange one equation to express one variable in terms of the other
  2. Substitute this expression into the other equation
  3. Solve for the remaining variable
  4. Substitute back to find the first variable
Solve: y = 2x + 1   and   3x + y = 16
Substitute: 3x + (2x+1) = 16
Simplify: 5x + 1 = 16 → 5x = 15 → x = 3
Find y: y = 2(3)+1 = 7
Answer: x = 3, y = 7 ✅
⚙ Engineering: Two-loop circuit — Kirchhoff’s voltage law gives two equations
Eq 1: 4I₁ + 2I₂ = 12   (loop 1: 12V supply)
Eq 2: 2I₁ + 6I₂ = 12   (loop 2: 12V supply)
×3 Eq 1: 12I₁ + 6I₂ = 36
Subtract Eq2: 10I₁ = 24 → I₁ = 2.4A
Substitute: 4(2.4) + 2I₂ = 12 → 2I₂ = 2.4 → I₂ = 1.2A
Answer: I₁ = 2.4 A,   I₂ = 1.2 A ✅
⚙️

Applications

Where this topic is used in engineering, manufacturing, maintenance and daily life.

Solving Equations in Engineering

Every engineering calculation eventually becomes an equation to solve. Here are the most common types you’ll meet in T Level.

⚡ Electrical — Quadratic from P = I²R

A resistor dissipates 18W in a 2Ω resistor. Find the current, then find I when an extra 6Ω is added in series.

P = I²R → 18 = I²×2
I² = 9 → I = 3A

Series circuit: P = I²(R₁+R₂)
18 = I²×8 → I = 1.5A

🏗 Structural — Quadratic area equation

A steel plate has area 48 cm². Its length is (x+4) and width is (x−2). Find x and the dimensions.

(x+4)(x−2) = 48
x² + 2x − 8 = 48
x² + 2x − 56 = 0
(x+9)(x−6) = 0 (check: 9×−6=−54? No...)
Formula: x = (−2 ± √(4+224))/2
x = (−2 + √228)/2 ≈ 6.55
Dims: 10.55 × 4.55 cm

🚗 SUVAT — Quadratic in time

Object starts at rest and travels s = ½at². Find t when s=45m and a=10m/s².

45 = ½×10×t²
45 = 5t²
t² = 9
t = 3 s (discard t=−3)

More complex: s=ut+½at²
0 = ½at² + ut − s → quadratic in t

⚙ Simultaneous — Gear system

Two gear speeds N₁ and N₂ satisfy: N₁ + N₂ = 1800 and N₁ = 3N₂. Find both speeds.

Substitute N₁=3N₂:
3N₂ + N₂ = 1800
4N₂ = 1800
N₂ = 450 rpm
N₁ = 3×450 = 1350 rpm
🎮

Quick Fire Quiz

Test your knowledge — 10 questions, instant feedback.

⚡ Solving Blitz

Score: 0 Streak: 0 🔥 Q 1/10
Loading...

Practice Questions

15 questions across 3 tiers — including the complex quadratic problems you asked for. Always show full working and check your answers!

🟢 Tier 1 — Foundations
Q1
Solve: 7x − 4 = 24
[2]
7x = 28
x = 4   Check: 7(4)−4=24 ✔
Q2
Solve: 4x + 3 = x + 15
[2]
3x = 12
x = 4
Q3
Solve by factorising: x² + 6x + 8 = 0
[3]
Need ×=8, +=6 → 2 and 4
(x+2)(x+4)=0
x = −2 or x = −4
Q4
Solve by factorising: x² − 16 = 0
[2]
Hint: difference of two squares
(x+4)(x−4)=0
x = 4 or x = −4
Q5
Use the quadratic formula to solve: x² + 3x − 4 = 0
[3]
a=1,b=3,c=−4
Discriminant: 9+16=25, √25=5
x=(−3+5)/2=1 or x=(−3−5)/2=−4
x=1 or x=−4
🟡 Tier 2 — Core Skills
Q6
Solve: 2(3x − 5) = 4(x + 1)
[3]
6x−10 = 4x+4
2x = 14
x = 7
Q7
Solve by factorising: 2x² + x − 6 = 0
[3]
AC: ac=−12, b=1 → 4 and −3
2x²+4x−3x−6=0
2x(x+2)−3(x+2)=0
(x+2)(2x−3)=0
x=−2 or x=1.5
Q8
Use the quadratic formula to solve: 3x² − 7x + 2 = 0. Give exact answers.
[4]
a=3,b=−7,c=2
Discriminant: 49−24=25, √25=5
x=(7+5)/6=2 or x=(7−5)/6=1/3
x=2 or x=1/3
Q9
Solve the simultaneous equations:   2x + y = 7   and   x − y = 2
[3]
Add equations: 3x=9 → x=3
Substitute: 3−y=2 → y=1
x=3, y=1   Check: 2(3)+1=7 ✔ 3−1=2 ✔
Q10
How many real solutions does 2x² − 3x + 5 = 0 have? Use the discriminant.
[2]
b²−4ac = 9−40 = −31
−31 < 0 → No real solutions
🔴 Tier 3 — T Level Challenge
Q11
Solve: (x + 3)(x − 5) = −7
[4]
Expand: x²−2x−15=−7
Rearrange: x²−2x−8=0
Factorise: (x−4)(x+2)=0
x=4 or x=−2
Q12
Solve: 6x² + 7x − 3 = 0 by factorising using the AC method.
[4]
AC: ac=−18, b=7 → 9 and −2
6x²+9x−2x−3=0
3x(2x+3)−1(2x+3)=0
(2x+3)(3x−1)=0
x=−3/2 or x=1/3
Q13
Solve: x⁴ − 13x² + 36 = 0. Find all four roots.
[5]
Hint: let u = x²
Let u=x²: u²−13u+36=0
Factorise: (u−4)(u−9)=0
u=4 or u=9
x²=4: x=±2
x²=9: x=±3
x = 2, −2, 3, −3
Q14
A rectangular cross-section beam has width x cm and height (x+4) cm. The cross-sectional area is 96 cm². Find the exact dimensions.
[4]
x(x+4) = 96
x²+4x−96=0
Factorise: (x+12)(x−8)=0
x=8 (discard x=−12)
Width=8cm, Height=12cm ✅
Q15
Two resistors R₁ and R₂ are connected first in series (R𝐏 = R₁+R₂ = 10Ω) then in parallel (R𝐏 = R₁R₂/(R₁+R₂) = 2.4Ω). Find R₁ and R₂.
[5]
R₁+R₂=10 and R₁R₂/(10)=2.4
So R₁R₂=24
R₂=10−R₁: R₁(10−R₁)=24
10R₁−R₁²=24
R₁²−10R₁+24=0
(R₁−4)(R₁−6)=0
R₁=4Ω, R₂=6Ω (or vice versa) ✅
🎯 Score guide: Q1–5 = foundations (12 marks) · Q6–10 = core skills (15 marks) · Q11–15 = T Level challenge (22 marks)

🏆 Algebra series complete! You’ve covered all 6 algebra topics: Expressions → Indices → Expanding → Factorising → Rearranging → Solving. Next: Trigonometry!
SL

SkillLondon — T Level / Level 3 Engineering Maths  ·  Algebra 6: Solving Equations  ·  Next: Trigonometry →