Functions: Coordinate System

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

โœ”๏ธSolved: 0

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.
Learning Topics

Frequently Asked Questions

Why does the x-coordinate always come first in an ordered pair?
By mathematical convention, coordinates are always written in alphabetical order as (x,y)(x, y). This standardized order ensures that anyone around the world can communicate and locate points on a coordinate plane consistently without ambiguity.