# Coordinate geometry in the (x, y) plane

> Edexcel International A-Level Mathematics · IAL P1
> Source: https://www.owlsprep.com/study/edexcel-ial-math-p1-coordinate-geometry-in-the-plane/

This guide covers all Edexcel IAL P1 coordinate geometry content, including straight line equation forms, gradient calculations, parallel/perpendicular line rules, midpoint, distance, and line intersections for your IAS exam.

**Prerequisites:** [Basic algebraic rearrangement](https://www.owlsprep.com/study/edexcel-ial-math-p1-algebraic-manipulation/); Understanding of linear relationships

## Learning objectives

- Recall and apply 3 valid forms of straight line equations for Edexcel P1 questions
- Calculate gradient, midpoint and distance between any two (x,y) coordinate points
- Identify parallel and perpendicular lines using their gradient relationships
- Find intersection points of two straight lines by solving simultaneous equations
- Solve structured exam-style coordinate geometry problems aligned to the 2018 IAL specification

## Foundational Coordinate Calculations

**Core Coordinate Formulas** — For two points $A(x_1, y_1)$ and $B(x_2, y_2)$: <br> 1. Gradient $m = \frac{y_2 - y_1}{x_2 - x_1}$ <br> 2. Midpoint of $AB$: $\left(\frac{x_1+x_2}{2}, \frac{y_1+y_2}{2}\right)$ <br> 3. Distance $AB$: $\sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}$

**Worked example:** Points A(2, 3) and B(6, 7) are plotted on the xy plane. Calculate the gradient of AB, the midpoint of AB, and the length of AB, giving your length answer to 2 decimal places.

1. Calculate gradient using the rise over run formula

   $$m = \frac{7-3}{6-2} = \frac{4}{4} = 1$$
2. Calculate midpoint by averaging x and y coordinates

   $$Midpoint = \left(\frac{2+6}{2}, \frac{3+7}{2}\right) = (4, 5)$$
3. Calculate distance using Pythagoras' theorem

   $$AB = \sqrt{(6-2)^2 + (7-3)^2} = \sqrt{16 + 16} = \sqrt{32} = 5.66 \text{ (2 dp)}$$

> **tip**
>
> Always label points clearly as $(x_1,y_1)$ and $(x_2,y_2)$ to avoid sign errors when subtracting coordinates.

*Calculator:* allowed

## Forms of the Straight Line Equation

**Straight Line Equation Forms** — Three valid forms for Edexcel P1: <br> 1. Slope-intercept: $y = mx + c$ where $m$ is gradient, $c$ is y-intercept <br> 2. Point-slope: $y - y_1 = m(x - x_1)$ for line with gradient $m$ passing through $(x_1, y_1)$ <br> 3. Standard form: $ax + by + c = 0$ where $a, b, c$ are integers

**Worked example:** Find the equation of the line with gradient 3 passing through point (2, 5), giving your answer in standard form $ax + by + c = 0$ with integer coefficients.

1. Use point-slope form first as you have a known point and gradient

   $$y - 5 = 3(x - 2)$$
2. Rearrange to slope-intercept form to simplify

   $$y - 5 = 3x - 6 \\ y = 3x -1$$
3. Rearrange all terms to one side to get standard form

   $$3x - y - 1 = 0$$

> **Exam tip:** If a question does not specify the form of the equation, $y=mx+c$ is acceptable, but standard form is often required for 1 final mark so check question instructions carefully.

*Calculator:* allowed

## Parallel and Perpendicular Lines

**Parallel and Perpendicular Line Rules** — For two lines with gradients $m_1$ and $m_2$: <br> 1. Parallel lines: $m_1 = m_2$ (equal gradients, different y-intercepts) <br> 2. Perpendicular lines: $m_1 m_2 = -1$ (product of gradients is -1, or one line is horizontal and the other vertical)

**Worked example:** Line L1 has equation $y = 2x + 4$. Find the equation of line L2 that is perpendicular to L1 and passes through point (4, 1), giving your answer in the form $ax + by + c = 0$.

1. Identify gradient of L1 from its equation: $m_1 = 2$
2. Calculate gradient of perpendicular line L2 using $m_1 m_2 = -1$

   $$m_2 = -\frac{1}{2}$$
3. Use point-slope form for L2 passing through (4,1)

   $$y - 1 = -\frac{1}{2}(x -4)$$
4. Multiply all terms by 2 to eliminate fractions, then rearrange to standard form

   $$2y - 2 = -x +4 \\ x + 2y -6 = 0$$

> **warning**
>
> If one line is horizontal (gradient 0), its perpendicular line is vertical (undefined gradient, equation $x = k$ for constant $k$), and the product rule does not apply.

*Calculator:* allowed

## Intersection of Two Lines

To find the intersection point of two straight lines, solve their equations simultaneously using either substitution or elimination. The solution gives the (x,y) coordinates where the lines cross.

**Worked example:** Find the intersection point of lines $2x + y = 7$ and $x - 3y = 0$.

1. Rearrange the second equation to isolate x for substitution

   $$x = 3y$$
2. Substitute $x = 3y$ into the first equation

   $$2(3y) + y =7 \\ 6y + y =7 \\ 7y =7 \\ y =1$$
3. Substitute $y=1$ back into $x=3y$ to find x

   $$x = 3(1) =3$$
4. Verify the solution satisfies both original equations: $2(3)+1=7$ and $3-3(1)=0$, so the intersection point is (3,1)

> **Exam tip:** Always substitute your calculated coordinates back into both original line equations to check for arithmetic errors, as this takes 10 seconds and avoids losing marks for small mistakes.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Subtracting coordinates in the wrong order when calculating gradient, e.g. $\frac{y_1 - y_2}{x_2 - x_1}$
  - Why it fails: This flips the sign of the gradient, leading to incorrect line equations and parallel/perpendicular checks.
  - Correct: Always subtract the coordinates of the first point from the second (or vice versa for both numerator and denominator) to keep the ratio consistent.
- **Wrong:** Forgetting to eliminate fractions when writing standard form $ax+by+c=0$, leaving non-integer coefficients.
  - Why it fails: Edexcel requires integer coefficients for this form unless stated otherwise, so you will lose 1 mark for non-integer values.
  - Correct: Multiply all terms by the lowest common denominator of all fractions to get integer a, b, c values.
- **Wrong:** Using the parallel gradient rule instead of perpendicular, or vice versa.
  - Why it fails: This leads to entirely incorrect line equations, costing most or all marks for a question.
  - Correct: Write down $m_1 = m_2$ for parallel and $m_1 m_2 = -1$ for perpendicular at the start of any question asking about line relationships to avoid confusion.
- **Wrong:** Assuming that all perpendicular lines follow the $m_1 m_2 = -1$ rule, including horizontal/vertical pairs.
  - Why it fails: Horizontal lines have gradient 0, vertical lines have undefined gradient, so their product does not exist, but they are still perpendicular.
  - Correct: Check if either line is horizontal or vertical first before applying the product rule.
- **Wrong:** Making arithmetic errors when solving simultaneous equations for line intersections, and not checking the solution.
  - Why it fails: Small addition/subtraction errors lead to wrong intersection points, which may be used in later parts of a question, causing cascading mark loss.
  - Correct: Substitute your calculated (x,y) values back into both original line equations to confirm they satisfy both.

## Cheatsheet

| Concept | Formula/Rule | Exam Note |
| --- | --- | --- |
| Gradient between 2 points | $m = \frac{y_2 - y_1}{x_2 - x_1}$ | Label points clearly to avoid sign errors |
| Midpoint of 2 points | $\left(\frac{x_1+x_2}{2}, \frac{y_1+y_2}{2}\right)$ | Used for line bisector questions |
| Distance between 2 points | $\sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}$ | Give exact form or rounded as specified |
| Straight line forms | $y=mx+c$, $y-y_1=m(x-x_1)$, $ax+by+c=0$ | Use point-slope for known point + gradient |
| Parallel lines | $m_1 = m_2$ | Distinct lines have different y-intercepts |
| Perpendicular lines | $m_1 m_2 = -1$ | Exception: horizontal + vertical pairs |
| Line intersection | Solve simultaneous equations | Check solution in both line equations |

## What's next

Now you have mastered P1 coordinate geometry, you are ready to move to more advanced Pure Maths topics. This foundational knowledge is critical for upcoming units, including coordinate geometry of circles in P2, and applications of differentiation to tangents and normals in P1 and P2. To reinforce your learning, practice as many past paper structured questions as possible, focusing on multi-part problems that combine line equations, perpendicular lines, and intersection calculations. Make sure you can quickly convert between all three forms of straight line equations without arithmetic errors, as this is a common requirement for early parts of exam questions that lead to higher-mark later sections.

- [Differentiation (P1)](https://www.owlsprep.com/study/edexcel-ial-math-p1-differentiation/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/edexcel-ial-math-p1-coordinate-geometry-in-the-plane/
