Functions: Coordinate System

Learn the two axes of a grid, the origin, and how to write and locate points.

✔️Solved: null

Learning Guide: The Coordinate System

The Axes & The Origin

The grid is built from two intersecting axes:
  • x-axis: The horizontal axis. Its values increase as you move right (positive direction) and decrease as you move left (negative direction).
  • y-axis: The vertical axis. Its values increase as you move upwards (positive direction) and decrease as you move downwards (negative direction).
  • Intersection: The two axes cross each other at a 90° angle (they are perpendicular). The point where they cross is called the origin, represented by coordinates (0,0)(0, 0).
IIIIIIIV−5−5−4−4−3−3−2−2−1−111223344550xyFigure 1: The coordinate plane showing the x-axis, y-axis, origin, the four quadrants, and a plotted point at (3, 2).

Writing points as Ordered Pairs

Any point on the coordinate plane is represented as an ordered pair written in the format:
(x,y)(x, y)
  • The first number (xx) is the x-coordinate (abscissa). It tells you how many units to move horizontally from the origin (right if positive, left if negative).
  • The second number (yy) is the y-coordinate (ordinate). It tells you how many units to move vertically from the origin (up if positive, down if negative).

The Four Quadrants (Regions)

The two crossing axes divide the coordinate system into four regions called quadrants, numbered counter-clockwise starting from the top-right:
  • First Quadrant (I): Top-right region. Both xx and yy are positive (x>0,y>0x > 0, y > 0). Example: (2,3)(2, 3).
  • Second Quadrant (II): Top-left region. xx is negative and yy is positive (x<0,y>0x < 0, y > 0). Example: (4,1)(-4, 1).
  • Third Quadrant (III): Bottom-left region. Both xx and yy are negative (x<0,y<0x < 0, y < 0). Example: (2,3)(-2, -3).
  • Fourth Quadrant (IV): Bottom-right region. xx is positive and yy is negative (x>0,y<0x > 0, y < 0). Example: (3,5)(3, -5).


Note: Points that lie directly on the x-axis or y-axis (like (0,4)(0, 4) or (3,0)(-3, 0)) or at the origin (0,0)(0, 0) are not located in any of the four quadrants.

Midpoint of a Segment

The midpoint MM of a segment connecting points A(x1,y1)A(x_1, y_1) and B(x2,y2)B(x_2, y_2) is the point that lies exactly halfway between them. The coordinates of the midpoint are given by the formula card below:
Mathematical Derivation & Example:
To understand why this formula works, we can project the segment ABAB and its midpoint MM onto the coordinate axes. This splits both the horizontal and vertical intervals into two equal parts:

1. Horizontal Projection (xx-axis):
The horizontal interval spans from x1x_1 to x2x_2. On our graph, this goes from x1=3x_1 = -3 to x2=5x_2 = 5 (a total distance of 88 units). The midpoint MM projects to xM=1x_M = 1. Since the distance from x1x_1 to xMx_M must equal the distance from xMx_M to x2x_2:
xMx1=x2xMx_M - x_1 = x_2 - x_M

Using our graph coordinates:
1(3)=51=4 units1 - (-3) = 5 - 1 = 4\text{ units}

Solving algebraically for xMx_M:
2xM=x1+x2    xM=x1+x222x_M = x_1 + x_2 \implies x_M = \frac{x_1 + x_2}{2}

Substituting the values yields:
xM=3+52=22=1x_M = \frac{-3 + 5}{2} = \frac{2}{2} = 1

2. Vertical Projection (yy-axis):
The vertical interval spans from y1y_1 to y2y_2. On our graph, this goes from y1=2y_1 = -2 to y2=4y_2 = 4 (a total distance of 66 units). The midpoint MM projects to yM=1y_M = 1. Equalizing the distances:
yMy1=y2yMy_M - y_1 = y_2 - y_M

Using our graph coordinates:
1(2)=41=3 units1 - (-2) = 4 - 1 = 3\text{ units}

Solving algebraically for yMy_M:
2yM=y1+y2    yM=y1+y222y_M = y_1 + y_2 \implies y_M = \frac{y_1 + y_2}{2}

Substituting the values yields:
yM=2+42=22=1y_M = \frac{-2 + 4}{2} = \frac{2}{2} = 1

By combining these components, we find the exact coordinates of the midpoint: M(1,1)M(1, 1).
xy0A(-3, -2)B(5, 4)M(1, 1)x1 = -3xM = 1x2 = 5y1 = -2yM = 1y2 = 44433
The graph shows that projecting the segment onto the xx and yy axes divides the interval between coordinates into two equal parts: xMx1=x2xMx_M - x_1 = x_2 - x_M and yMy1=y2yMy_M - y_1 = y_2 - y_M.

Distance Between Two Points

The distance dd between two points A(x1,y1)A(x_1, y_1) and B(x2,y2)B(x_2, y_2) is the length of the straight line segment connecting them. The distance formula is given by the formula card below:
Relation to the Pythagorean Theorem:
By projecting the segment ABAB onto the axes, we construct a right triangle ACBACB with a horizontal leg ACAC (length x2x1|x_2 - x_1|) and a vertical leg CBCB (length y2y1|y_2 - y_1|).
Applying the Pythagorean theorem (a2+b2=c2a^2 + b^2 = c^2), the hypotenuse dd satisfies:
d2=(x2x1)2+(y2y1)2    d=(x2x1)2+(y2y1)2d^2 = (x_2 - x_1)^2 + (y_2 - y_1)^2 \implies d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}

For example, using the points A(3,2)A(-3, -2) and B(5,4)B(5, 4) on the graph:
- The horizontal distance is x2x1=5(3)=8x_2 - x_1 = 5 - (-3) = 8.
- The vertical distance is y2y1=4(2)=6y_2 - y_1 = 4 - (-2) = 6.
- Applying the theorem:
d=82+62=64+36=100=10d = \sqrt{8^2 + 6^2} = \sqrt{64 + 36} = \sqrt{100} = 10
xy0A(-3, -2)B(5, 4)C(5, -2)|x2 - x1| = 8|y2 - y1| = 6d = 10
The graph shows the right triangle ACBACB formed by projecting the segment ABAB onto the axes, demonstrating how the distance formula is derived directly from the Pythagorean theorem.
Learning Topics
Coordinate System | SealMath