Library International Mathematics 0607 Coordinate Geometry
O Level · International Mathematics 0607

Coordinate Geometry

Revise Coordinate Geometry for International Mathematics 0607 (O Level) — revision notes and instant AI marking. Free to start.

📖 Revision notes · preview
  Cambridge (CIE) IGCSE — International Maths Extended

Coordinate Geometry

Big idea: Every point, line, and shape on a grid can be described precisely using numbers — and once you know two points, you can work out exactly where the line's middle is, how steep it is, and how long it is, without ever measuring anything by hand.

Quick Summary
  • Coordinates — an (x, y) pair pins down the exact location of a point on the Cartesian plane.
  • Midpoint — the exact middle of a line segment; found by averaging the x's and averaging the y's.
  • Gradient — how steep a line is; found using "rise over run" or the gradient formula.
  • Length of a line — the straight-line distance between two points; found using Pythagoras' theorem in disguise.
  • All four ideas connect: once you can read coordinates, midpoint/gradient/length are just formulas applied to two (x, y) pairs.
1. Coordinates
What is the Cartesian plane?

Picture a giant piece of graph paper. It has two number lines crossing each other at a right angle:

  • A horizontal line called the x-axis
  • A vertical line called the y-axis

They cross at a special point called the origin, where x = 0 and y = 0. This grid — the whole flat surface with these two axes on it — is called the Cartesian plane. Think of it as a map: the origin is "home base," and every other point is described by how far you've travelled from it.

y | 6 | (-1,4)| (2,5) • | • | ----------+----------- x -6 -4 -2 0 2 4 6 | -2 |
What do coordinates actually mean?

A coordinate is a pair of numbers, written as (x, y), that tells you exactly where a point sits on the grid:

  • x tells you how far to move left/right (horizontal)
  • y tells you how far to move up/down (vertical)
Memory trick
Think: "Along the corridor, up the stairs." You always move sideways (x) first, then up or down (y). That's why it's always written (x, y) and never (y, x).

Rules for the signs:

  • Positive x → move right of the origin. Negative x → move left.
  • Positive y → move up from the origin. Negative y → move down.

So (2, 5) means: start at the origin, go 2 right, then 5 up. And (-1, -4) means: go 1 left, then 4 down.

Worked Example

(a) Point A is 3 squares left of the origin and 4 squares up. What are its coordinates?

  1. A is 3 units to the left → x = −3
  2. A is 4 units up → y = 4
  3. Write in brackets, x first: A = (−3, 4)

(b) Plot point B at (3, −2).

  1. Start at the origin (0, 0)
  2. Move 3 units right (because x = 3)
  3. Move 2 units down (because y = −2)
  4. Mark the point and label it B
Examiner tip
Always check the scale on a coordinate grid before reading off coordinates — one square doesn't always represent 1 unit. Some grids jump in 2s or 5s per square!
Practice Question 1
Point P is 5 units to the right of the origin and 3 units below it. Write down the coordinates of P.
Practice Question 2
A point Q has coordinates (−4, 0). Describe in words where Q lies, and explain what's special about it.
2. Midpoint of a Line
What is a midpoint, really?

The midpoint of a line segment is simply the point that sits exactly halfway between its two endpoints — the same distance from each end. Here's the key insight that makes this easy: the midpoint's coordinates are just the average (mean) of the two endpoints' coordinates. Average the x-values to get the midpoint's x. Average the y-values to get the midpoint's y. That's it — no geometry needed, just arithmetic.

(x1,y1) •-----------•-----------• (x2,y2) midpoint ( x1+x2 , y1+y2 ) ( 2 2 )
Midpoint of (x₁, y₁) and (x₂, y₂)  =  ( (x₁+x₂)/2 , (y₁+y₂)/2 )
Add the two x's, halve it. Add the two y's, halve it.
Worked Example

The coordinates of A are (−4, 3) and the coordinates of B are (8, −12). Find the midpoint of AB.

  1. Write the formula: ( (x₁+x₂)/2 , (y₁+y₂)/2 )
  2. Substitute: ( (−4+8)/2 , (3+(−12))/2 ) = ( 4/2 , −9/2 )
  3. Simplify: (2, −4.5)
Sanity check
A quick way to check your answer makes sense: the midpoint's x-value should sit between the two original x-values, and same for y. Here, 2 is between −4 and 8 ✓, and −4.5 is between 3 and −12 ✓.
Practice Question 1
Find the midpoint of the line joining C(1, 6) and D(7, 2).
Practice Question 2 (Harder — working backwards)
M(3, 1) is the midpoint of the line joining E(−1, 5) and F. Find the coordinates of F.
3. Gradient of a Line
What does "gradient" actually measure?

The gradient tells you how steep a straight line is — and which way it's tilted. Imagine walking along the line from left to right:

  • If you're walking uphill, the gradient is positive.
  • If you're walking downhill, the gradient is negative.
  • The bigger the number (ignoring the sign), the steeper the climb or drop. A gradient of 5 is much steeper than a gradient of 2.

Concretely: a gradient of 3 means "for every 1 unit you move right, you go up 3 units." A gradient of −4 means "for every 1 unit you move right, you go down 4 units."

y y | / | | / uphill | \ downhill | / (positive) | \ (negative) | / | \ ---+------- x ---+------- x | |
How do I actually calculate it?

Pick any two points on the line and imagine (or draw) a right-angled triangle between them. Then:

gradient = (change in y) / (change in x) = rise / run
"Rise" is the vertical side of the triangle. "Run" is the horizontal side.

If you know two exact coordinate points, (x₁, y₁) and (x₂, y₂), you can skip the diagram entirely and use the formula:

gradient = (y₂ − y₁) / (x₂ − x₁)
Subtract the y's, subtract the x's (in the same order!), then divide.
Watch out
You must subtract in a consistent order. If you do y₂ − y₁ on the top, you must do x₂ − x₁ on the bottom (not x₁ − x₂). Mixing the order flips the sign of your answer — a classic exam slip-up.
Worked Example

(a) A line passes through (0, 2) and (1, 5). Find its gradient.

  1. Rise = 5 − 2 = 3 (how much y changed)
  2. Run = 1 − 0 = 1 (how much x changed)
  3. Gradient = rise/run = 3/1 = 3
  4. The line goes uphill, so the gradient is positive: gradient = 3
Drawing a line from a given gradient

This is the reverse skill — you're given a gradient and a point, and asked to sketch the line. Turn the gradient into a fraction (rise/run), then step it out on the grid.

Worked Example

Draw the line with gradient −2 that passes through (0, 1).

  1. Mark the starting point (0, 1)
  2. Write −2 as a fraction: −2/1 (rise = 2, run = 1)
  3. Negative gradient → downhill, so from (0,1) move 1 across (right) and 2 down
  4. Mark that new point, then draw a straight line through both points
Handy shortcut
If the gradient is a whole number like −5, just write it as a fraction over 1: −5/1. Then rise = 5, run = 1.
Practice Question 1
Find the gradient of the line joining points (−2, −3) and (4, 9).
Practice Question 2
A line has gradient 3/4 and passes through (−1, −2). Describe how you'd draw it (rise, run, and direction of each step).
4. Length of a Line
Where does this formula come from?

To find the straight-line distance between two points, we secretly use Pythagoras' theorem (a² + b² = c²). Here's the idea: if you draw a right-angled triangle where the line segment is the hypotenuse, then:

  • The horizontal leg of the triangle is the difference in x-coordinates
  • The vertical leg is the difference in y-coordinates
  • The line segment itself is the hypotenuse — the distance you want
(x1,y1) •-------------• b (horizontal leg) | /| | / | a | / | c (vertical leg) | / | / | • (x2,y2) distance² = b² + c²
d = √[ (x₁ − x₂)² + (y₁ − y₂)² ]
Subtract the x's, square it. Subtract the y's, square it. Add them. Square-root the total.
Why the order doesn't matter here
Unlike gradient, it's fine to do either (x₁ − x₂) or (x₂ − x₁) — because you square the result straight after, and squaring always makes negatives positive. So the order of subtraction can't mess up your final answer.
Worked Example

Point A has coordinates (3, −4) and point B has coordinates (−5, 2). Calculate the length of AB.

  1. Formula: d = √[(x₁−x₂)² + (y₁−y₂)²]
  2. Substitute: d = √[(3 − (−5))² + ((−4) − 2)²]
  3. Be careful with negatives: 3 − (−5) = 8, and (−4) − 2 = −6
  4. d = √[8² + (−6)²] = √[64 + 36] = √100 = 10 units
Examiner tip
Put negative numbers in brackets before subtracting to avoid sign errors, e.g. write it as (−6) − (−8) = 2 rather than trying to do it in your head. This is one of the most common places marks are dropped.
Practice Question 1
Find the distance between the points (1, 2) and (4, 6).
Practice Question 2
The distance between points (−2, k) and (2, 1) is 5 units. Find the possible value(s) of k.
What to Memorise
ConceptFormula / Rule
Coordinates(x, y) — x horizontal, y vertical. Origin = (0, 0).
Midpoint( (x₁+x₂)/2 , (y₁+y₂)/2 ) — average the x's, average the y's
Gradient (points)(y₂ − y₁) / (x₂ − x₁) — keep subtraction order consistent top & bottom
Gradient (visual)rise / run — positive = uphill, negative = downhill
Length of a line√[(x₁−x₂)² + (y₁−y₂)²] — Pythagoras' theorem applied to coordinate differences
Steepness ruleBigger |gradient| = steeper line. Gradient 0 = flat horizontal line.
Concepts Checklist
Exam Tips & Common Mistakes
Mistake 1: Forgetting the negative sign on downhill gradients
Students often calculate rise/run correctly but forget to make the answer negative when the line slopes downward. Always ask yourself: is this line going uphill or downhill left-to-right? If downhill, the gradient MUST be negative.
Mistake 2: Mismatched subtraction order in the gradient formula
If you calculate y₂ − y₁ on top, you must use x₂ − x₁ on the bottom — using the same point order both times. Swapping the order on just one line flips the sign of your final answer.
Mistake 3: Sign errors with negative coordinates
Expressions like (−4) − 2 or 3 − (−5) trip up a lot of students. Always write negative numbers in brackets first, then work through carefully. This applies to midpoint, gradient, and length calculations alike.
Mistake 4: Forgetting ± when solving for an unknown coordinate
In "find k given the distance" style questions, once you square-root both sides of an equation like (k−1)² = 9, remember there are two possible answers: k − 1 = 3 AND k − 1 = −3.
Mistake 5: Averaging wrong in the midpoint formula
The midpoint formula adds both x-values THEN divides by 2 — it's not "the difference divided by 2." Don't confuse this with the gradient formula, which does subtract.
What examiners want to see
Full method marks usually require showing substitution into the formula clearly (not just the final answer), and simplifying surds/fractions fully at the end. Always write the formula first, then substitute — this earns method marks even if your final arithmetic slips.
🔓 Read the full Coordinate Geometry note — free You're seeing the preview · free account, no card needed
What's inside
📖 Revision notes 🎯 Learn mode ✦ AI flashcards ✓ Instant AI marking 🧊 3D explorers 🧪 Experiments & simulations 📈 Progress tracking
📄 Practise Coordinate Geometry with International Mathematics 0607 past papers Every paper with its mark scheme — answer online, marked instantly. Open →

Read the full Coordinate Geometry 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 →

More International Mathematics topics