Basic level

The coordinate plane

Two perpendicular axes turn the plane into a map on which every point has an address made of two numbers. The order of those numbers is part of the address, their signs name the quadrant, and a segment parallel to an axis is measured by subtraction. Plus the midpoint of a segment, which is the average of the endpoints.

Before you start

This topic builds on earlier ideas. Before you start, it's worth working through the lessons below — they'll make everything click:

Where this is used

Real situations where you count exactly the way this lesson teaches:

  • Screens, windows and the centre of a button
    Every pixel on a screen has an address in a coordinate system. A button with corners (320, 180) and (480, 240) has its centre at (400, 210) — the average of the two corners. An interface that "centres itself" is computing exactly that formula, and the width of the button is 480 − 320 = 160 pixels, which is a subtraction of abscissas.
  • Surveying and setting out a point
    A surveyor works in a national coordinate system where every boundary marker is a pair of numbers in metres. Given A(6210, 4380) and B(6250, 4460), the middle of the boundary falls at (6230, 4420) — and that is where the intermediate marker goes. The distance along the northing axis alone is 4460 − 4380 = 80 m.
  • Games and the position of a character
    A character in a 2D game stands at (12, 5) on the tile grid and the exit is at (12, 11). The segment is vertical, so the walk is simply 11 − 5 = 6 tiles, and the engine puts the halfway checkpoint at (12, 8).
  • A room plan on squared paper
    Drawing a room on squared paper, you take a corner as the origin and one square as 25 cm. A socket at (6, 0) is 6 · 25 = 150 cm from the corner, and a lamp hung halfway between walls at 0 and 14 lands on square 7, which is 175 cm.

All formulas

  • Coordinates of a point

    A=(xA, yA)A = (x_A,\ y_A)

    the abscissa first, then the ordinate

  • Signs in the quadrants

    I:(+,+),II:(,+),III:(,),IV:(+,)\text{I}: (+,\, +), \quad \text{II}: (-,\, +), \quad \text{III}: (-,\, -), \quad \text{IV}: (+,\, -)

    numbered counter-clockwise

  • Segment parallel to the x axis

    AB=xBxA|AB| = |x_B - x_A|

    both ordinates are equal

  • Segment parallel to the y axis

    AB=yByA|AB| = |y_B - y_A|

    both abscissas are equal

  • Midpoint of a segment

    S=(xA+xB2, yA+yB2)S = \left( \frac{x_A + x_B}{2},\ \frac{y_A + y_B}{2} \right)

    the average of the endpoints, coordinate by coordinate

  • The other endpoint

    B=(2xSxA, 2ySyA)B = (2x_S - x_A,\ 2y_S - y_A)

    the same formula read backwards

To say where a number sits on a line, one number is enough. To say where a point sits on a plane, one is not — two are needed, given in a fixed order. That idea is called a coordinate system, and it underpins everything we draw on squared paper: the graph of a function, a map, a floor plan and a phone screen.

Two axes and the origin

Take two perpendicular number lines and cross them at zero. The horizontal one is the x axis, the vertical one the y axis, and the point where they meet is the origin, written OO. Both axes have a direction: on the x axis numbers grow to the right, on the y axis upwards.

The axes cut the plane into four regions called quadrants. They are numbered I\text{I} to IV\text{IV} counter-clockwise, starting from the top right.

−6−5−4−3−2−10123456−5−4−3−2−1012345xyIIIIIIIVA(3, 2)B(−4, 3)C(−2, −3)D(4, −2)
Four points, one in each quadrant. The quadrant follows from the signs of the coordinates alone.

The coordinates of a point

The address of a point is a pair of numbers: the first says how far to go along the x axis, the second how far along the y axis. The first is the abscissa, the second the ordinate, and the pair is written in brackets:

A=(xA, yA)A = (x_A,\ y_A)

The order is not a convention to remember for a minute — it is part of the address. The points (3,2)(3, 2) and (2,3)(2, 3) are in different places: three units right and two up versus two right and three up. That is why the pair is called ordered.

Give the coordinates of the point lying 4 units to the left of the y axis and 3 units below the x axis.

The quadrant follows from the signs

You do not need the drawing to name the quadrant — the signs of the two numbers are enough, because they are exactly what says which side of each axis the point is on. Negative numbers are the only earlier idea this needs.

QuadrantAbscissa xxOrdinate yyExample
I\text{I}positivepositive(3, 2)(3,\ 2)
II\text{II}negativepositive(4, 3)(-4,\ 3)
III\text{III}negativenegative(2, 3)(-2,\ -3)
IV\text{IV}positivenegative(4, 2)(4,\ -2)

Points on an axis belong to no quadrant

The axes are boundaries, not parts of the quadrants. A point lies on the x axis exactly when its ordinate is zero, and on the y axis exactly when its abscissa is:

(a, 0)OX,(0, b)OY,(0, 0)=O(a,\ 0) \in OX, \qquad (0,\ b) \in OY, \qquad (0,\ 0) = O

The distinction comes back with every graph: a zero of a function is where the graph crosses the x axis, and the constant term is where it crosses the y axis.

A segment parallel to an axis is measured by subtracting

If two points share the same ordinate, the segment between them is horizontal and its length is the distance between the abscissas:

AB=xBxA|AB| = |x_B - x_A|

Likewise for a vertical segment, where the abscissas are equal:

AB=yByA|AB| = |y_B - y_A|

The modulus is there so that the result does not depend on the order of subtraction — a length is never negative. It is the same distance on the number line, carried over to the plane.

A slanted segment needs the Pythagorean theorem, and its length is computed in the lesson on analytic geometry.

A(−3, 4) and B(5, 4) are the endpoints of a segment. How long is it?

The midpoint of a segment

The midpoint lies exactly halfway — and "halfway" for each coordinate separately means the average:

S=(xA+xB2, yA+yB2)S = \left( \frac{x_A + x_B}{2},\ \frac{y_A + y_B}{2} \right)
−6−5−4−3−2−101234−3−2−1012345A(−4, −1)B(2, 3)S(−1, 1)
The segment AB and its midpoint. The abscissa of S is the average of −4 and 2, its ordinate the average of −1 and 3.

Read backwards, the same formula answers the opposite question: given one endpoint and the midpoint, find the other endpoint. Since xSx_S is an average, xB=2xSxAx_B = 2x_S - x_A, and the same for the ordinates:

B=(2xSxA, 2ySyA)B = (2x_S - x_A,\ 2y_S - y_A)
S(2, −1) is the midpoint of AB and A = (−3, 4). Find B.

Practice

Work through a set of exercises — they get harder as you go. At the end you'll see your score and the mistakes worth reviewing.

Exercise 1 of 8Score: 0
which quadrant: A(4, 1)

Common mistakes

  • Swapping the coordinates(3,2)(3, 2) is not (2,3)(2, 3). The first number always runs along the horizontal axis.
  • Assigning a quadrant to a point on an axis(0,4)(0, 4) and (5,0)(5, 0) lie in no quadrant.
  • Subtracting coordinates of a slanted segment — the difference of abscissas is the length only when the segment is horizontal; otherwise the Pythagorean theorem is needed.
  • Adding instead of averaging for the midpoint — the sum of the coordinates still has to be divided by two.
  • Averaging when looking for the other endpoint — there the reversed formula 2xSxA2x_S - x_A applies, not an average.
  • Losing a minus when subtracting a negative5(3)=85 - (-3) = 8, not 22.

Formula card

Topic: The coordinate plane

  • Coordinates of a point

    A=(xA, yA)A = (x_A,\ y_A)

    the abscissa first, then the ordinate

  • Signs in the quadrants

    I:(+,+),II:(,+),III:(,),IV:(+,)\text{I}: (+,\, +), \quad \text{II}: (-,\, +), \quad \text{III}: (-,\, -), \quad \text{IV}: (+,\, -)

    numbered counter-clockwise

  • Segment parallel to the x axis

    AB=xBxA|AB| = |x_B - x_A|

    both ordinates are equal

  • Segment parallel to the y axis

    AB=yByA|AB| = |y_B - y_A|

    both abscissas are equal

  • Midpoint of a segment

    S=(xA+xB2, yA+yB2)S = \left( \frac{x_A + x_B}{2},\ \frac{y_A + y_B}{2} \right)

    the average of the endpoints, coordinate by coordinate

  • The other endpoint

    B=(2xSxA, 2ySyA)B = (2x_S - x_A,\ 2y_S - y_A)

    the same formula read backwards

−6−5−4−3−2−10123456−5−4−3−2−1012345xyIIIIIIIVA(3, 2)B(−4, 3)C(−2, −3)D(4, −2)
The four quadrants with one point in each. A quadrant is recognised from the signs of the coordinates alone.
−6−5−4−3−2−101234−3−2−1012345A(−4, −1)B(2, 3)S(−1, 1)
The midpoint of AB with A(−4, −1) and B(2, 3). Each coordinate of the midpoint is the average of that coordinate of the endpoints.

Frequently asked questions

Related articles