Cartesian Coordinates and the Plane
Learning objectives
- Understand the Cartesian coordinate system and the role of the origin
- Identify and plot ordered pairs in the coordinate plane
- Determine which quadrant a given point lies in
- Relate geometric position to algebraic coordinates
One of the great unifying ideas in mathematics. Before Descartes (1637), geometry and algebra lived in separate worlds. He had the insight to label every point in the plane with a pair of numbers, turning geometric questions into algebraic ones and vice versa. Suddenly the locus "all points equidistant from the origin" became the equation , and computation could replace clever construction.
The Cartesian setup
Draw two perpendicular number lines that cross at the origin . The horizontal one is the -axis, the vertical one is the -axis. Together they form the Cartesian coordinate system, named for René Descartes.
Every point in the plane gets two numbers: its -coordinate (signed horizontal distance from the -axis) and its -coordinate (signed vertical distance from the -axis). We write . Order matters: and are different points.
- Cartography: Latitude and longitude form a curved-surface coordinate system; flat-map projections (Mercator, Robinson, Peters) are all attempts to lay this onto a Cartesian plane, each making different trade-offs.
- Spreadsheets: An Excel cell address like
D7is a 2D coordinate (column letter, row number); every formula that references another cell is doing the same plane-geometry indexing as plotting . - Computer Vision: Pixel coordinates in an image are a 2D coordinate system, usually with the origin at the top-left and growing downward, a sign convention that has tripped up generations of programmers.
Drag and around in the widget above and watch their coordinates update. Place at : it lies on the -axis, three units to the right.
The four quadrants
The axes carve the plane into four quadrants, numbered counter-clockwise starting from the upper right:
- Quadrant I: , upper right.
- Quadrant II: , upper left.
- Quadrant III: , lower left.
- Quadrant IV: , lower right.
Points lying exactly on either axis do not belong to a quadrant. A point on the -axis has form ; a point on the -axis has form .
The bridge between geometry and algebra
The Cartesian system sets up a one-to-one correspondence between points in the plane and ordered pairs of real numbers. Two points sharing the same -coordinate lie on the same vertical line, two points sharing the same -coordinate lie on the same horizontal line, and the straight-line distance becomes the formula that we develop in the next section.
Try it
- Drag , . Predict first: , which quadrant should that be? Drag the point and verify (answer: Quadrant II, with negative and positive ).
- Drag , . Before dragging: with , which axis does the point sit on? Drag and verify it lands on the -axis.
- Place , and , . Predict first: how are and related geometrically? Place both points and verify they are reflections of each other through the origin.
A trap to watch for
The convention that the first coordinate is horizontal () and the second is vertical () is universal in mathematics, but beginners regularly transpose them. Triple-check: means "go 2 to the right, then 5 up." A related trap: some screen-coordinate systems in computer graphics put pointing downward, the opposite of the mathematical convention.
What you now know
You can place any point in the plane using its ordered pair, identify which quadrant (or axis) it lies in, and switch between geometric descriptions and algebraic coordinates. The next section derives the distance formula.
Quick check
Mark section complete →
References
- Lang, S. (1971). Basic Mathematics. Springer. Chapter 8, §1.
- Descartes, R. (1637). La Géométrie (Smith and Latham, Dover, 1954). The original publication of analytic geometry.
- Boyer, C. B. (2004). History of Analytic Geometry. Dover. Detailed history of how coordinates came into mathematics.
- Stewart, J. (2015). Calculus, 8th ed. Cengage. Appendix B reviews the coordinate plane and its conventions.