lesson

Updated 6 days ago Β· 3 views
Imagine playing a game of Battleship or typing coordinates into a GPS app.
Every 2D map in the world locates objects using two numbers: one for horizontal position and one for vertical position.
In 1637, French mathematician RenΓ© Descartes formalized this grid system to unite algebra and geometry, which is why we call it the Cartesian coordinate plane.
Anatomy of the Grid
The plane is built from two perpendicular number lines that cross at a central starting point called the origin (0,0).
The horizontal line is the x-axis, and the vertical line is the y-axis; together, they divide the space into four quadrants numbered counterclockwise with Roman numerals (I, II, III, IV).
πA clean, modern diagram of a 2D Cartesian coordinate plane from -5 to 5 on both axes. Clearly label the horizontal 'x-axis' in bold blue and the vertical 'y-axis' in bold purple. Mark the origin (0,0) with a distinct gold dot and label. Label the four quadrants in Roman numerals with their sign rules: Quadrant I (+, +) in top-right, Quadrant II (-, +) in top-left, Quadrant III (-, -) in bottom-left, Quadrant IV (+, -) in bottom-right. Include subtle grid lines and clean typography.
How do we use these axes to pinpoint an exact position anywhere on the plane?
The Ordered Pair (x,y)
Every point is written as an ordered pair (x,y), where the order always matters: horizontal x comes first, and vertical y comes second.
To plot any point, start at the origin (0,0), move horizontally along the x-axis (right for positive, left for negative), and then move vertically parallel to the y-axis (up for positive, down for negative).
πAn animated step-by-step plotting diagram on a grid from -5 to 5. Show two example points: Point A at (3, 4) and Point B at (-4, -2). For Point A, show a dotted blue horizontal arrow stepping from (0,0) to 3 on the x-axis, then a dotted blue vertical arrow stepping up to 4, ending with a solid plotted dot labeled 'A(3, 4) in Quad I'. For Point B, show an orange path from (0,0) left to -4, then down to -2, labeled 'B(-4, -2) in Quad III'. Add step 1 (x-move) and step 2 (y-move) labels.
What happens when one of your coordinate values is zero?