← mapAlgebra Core

The Coordinate Plane

⚗ Dr. Möbius, from the lab

René Descartes had a fever dream about flies on a ceiling and invented analytic geometry. That is not a myth — the story is probably exaggerated, but the point stands: the coordinate plane is the moment algebra and geometry crash into each other, and everything downstream of this lesson lives in that collision. Pay attention.

THE BIG IDEA

The coordinate plane is the Cartesian product ℝ×ℝ — every point is an ordered pair, distance is Pythagoras in coordinate form, and the graph of an equation is the set of all pairs that satisfy it.

Set theory built this room

From the Ordered Pairs and Cartesian Products lesson in the Sets stratum: the Cartesian product R×R\mathbb{R} \times \mathbb{R} is the set of all ordered pairs (x,y)(x, y) where x,yRx, y \in \mathbb{R}. That set IS the coordinate plane. Descartes didn't invent a new thing — he gave R2\mathbb{R}^2 a spatial interpretation. The xx-axis is the first copy of R\mathbb{R}; the yy-axis is the second copy; the origin (0,0)(0, 0) is the pair (0,0)(0, 0).

A point is an ordered pair. (3,2)(3, -2) is the pair where the first component is 3 and the second is 2-2. It lives 3 units right of the origin and 2 units below it. The order matters: (3,2)(2,3)(3, -2) \ne (-2, 3) — that's the definition of "ordered" from the Sets lesson.

Quadrants. The axes divide the plane into four quadrants:

  • Quadrant I: x>0x > 0, y>0y > 0 (upper right)
  • Quadrant II: x<0x < 0, y>0y > 0 (upper left)
  • Quadrant III: x<0x < 0, y<0y < 0 (lower left)
  • Quadrant IV: x>0x > 0, y<0y < 0 (lower right)

Points on the axes are not in any quadrant.

The distance formula: Pythagoras, translated

The Pythagorean theorem (full proof lives in the Geometry stratum) says: in a right triangle with legs aa and bb and hypotenuse cc, we have a2+b2=c2a^2 + b^2 = c^2.

Now take two points P1=(x1,y1)P_1 = (x_1, y_1) and P2=(x2,y2)P_2 = (x_2, y_2). Draw the horizontal segment from P1P_1 to (x2,y1)(x_2, y_1) — its length is x2x1|x_2 - x_1|. Draw the vertical segment from (x2,y1)(x_2, y_1) to P2P_2 — its length is y2y1|y_2 - y_1|. These two segments are the legs of a right triangle with hypotenuse P1P2\overline{P_1 P_2}.

Pythagoras gives: d(P1,P2)2=(x2x1)2+(y2y1)2.d(P_1, P_2)^2 = (x_2 - x_1)^2 + (y_2 - y_1)^2.

Taking the non-negative square root (since distance is non-negative by definition): d(P1,P2)=(x2x1)2+(y2y1)2.d(P_1, P_2) = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}.

This is not a new formula — it's the Pythagorean theorem wearing coordinate clothes. File this away: in linear algebra, v\|v\| will be this formula again, in nn dimensions.

Example: distance from (1,2)(1, 2) to (4,6)(4, 6): d=(41)2+(62)2=9+16=25=5.d = \sqrt{(4-1)^2 + (6-2)^2} = \sqrt{9 + 16} = \sqrt{25} = 5.

The midpoint formula: averaging coordinates

The midpoint MM of the segment from P1=(x1,y1)P_1 = (x_1, y_1) to P2=(x2,y2)P_2 = (x_2, y_2) is halfway between them in each coordinate: M=(x1+x22,  y1+y22).M = \left(\frac{x_1 + x_2}{2},\; \frac{y_1 + y_2}{2}\right).

Why? Because the midpoint of any interval [a,b][a, b] on the number line is the average a+b2\frac{a+b}{2} — we're just applying that to each coordinate independently. The xx and yy directions are independent (they're separate copies of R\mathbb{R}), so averaging each one separately gives the point that sits exactly halfway.

Example: midpoint of (3,5)(-3, 5) and (7,1)(7, 1): M=(3+72,5+12)=(2,3).M = \left(\frac{-3+7}{2}, \frac{5+1}{2}\right) = (2, 3).

The graph of an equation: a set of points

The graph of an equation in xx and yy is the set of all ordered pairs (x,y)(x, y) that make the equation true. This is the bridge between algebra and geometry — algebra describes a condition, geometry makes it visible.

For example, the graph of y=2x1y = 2x - 1 is the set {(x,y)R2:y=2x1}\{(x, y) \in \mathbb{R}^2 : y = 2x - 1\}. When you "plot the graph" you are drawing this set. The set happens to be a straight line, but that's not obvious until you actually plot it or derive it algebraically (we'll do that in the Lines and Slope lesson).

Checking whether a point is on a graph: substitute its coordinates into the equation and see if the equation becomes true. (3,5)(3, 5) on y=2x1y = 2x - 1? Substitute: 5=2(3)1=55 = 2(3) - 1 = 5. Yes. (0,0)(0, 0)? 0=2(0)1=10 = 2(0) - 1 = -1. No.

The graph is a geometric object; the equation is an algebraic one; they describe the same mathematical set. This duality is the engine of the rest of this course.

🔬 SPECIMENS (worked examples)

Worked example 1 — distance and a sanity check

Find the distance between A=(1,3)A = (-1, 3) and B=(4,9)B = (4, -9).

Apply the distance formula — which is the Pythagorean theorem: d=(4(1))2+(93)2=52+(12)2=25+144=169=13.d = \sqrt{(4 - (-1))^2 + (-9 - 3)^2} = \sqrt{5^2 + (-12)^2} = \sqrt{25 + 144} = \sqrt{169} = 13.

The distance is 13.

Sanity check. (5,12,13)(5, 12, 13) is a Pythagorean triple (52+122=25+144=169=1325^2 + 12^2 = 25 + 144 = 169 = 13^2). The horizontal separation is 5, the vertical is 12 (in absolute value). So the answer of 13 is exact, not an approximation, which is a useful flag that we didn't make an arithmetic error.

Worked example 2 — midpoint and using it

The midpoint of segment PQ\overline{PQ} is M=(3,1)M = (3, -1). One endpoint is P=(1,4)P = (-1, 4). Find the other endpoint QQ.

If Q=(x,y)Q = (x, y), the midpoint formula gives: 1+x2=3and4+y2=1.\frac{-1 + x}{2} = 3 \quad \text{and} \quad \frac{4 + y}{2} = -1.

Solve the first: 1+x=6    x=7-1 + x = 6 \implies x = 7.

Solve the second: 4+y=2    y=64 + y = -2 \implies y = -6.

So Q=(7,6)Q = (7, -6).

Check: midpoint of (1,4)(-1, 4) and (7,6)(7, -6) is (1+72,462)=(3,1)\left(\frac{-1+7}{2}, \frac{4-6}{2}\right) = (3, -1). Confirmed.

Worked example 3 — graph membership and the algebra–geometry bridge

The circle with center (2,1)(2, -1) and radius 5 has the equation (x2)2+(y+1)2=25(x-2)^2 + (y+1)^2 = 25 (we'll derive this in the Geometry stratum — accept it for now). Which of these points are on the circle: (6,2)(6, 2), (3,1)(-3, -1), (2,4)(2, 4), (5,3)(5, 3)?

Substitute each into (x2)2+(y+1)2=25(x-2)^2 + (y+1)^2 = 25:

(6,2)(6, 2): (62)2+(2+1)2=16+9=25(6-2)^2 + (2+1)^2 = 16 + 9 = 25. Yes.

(3,1)(-3, -1): (32)2+(1+1)2=25+0=25(-3-2)^2 + (-1+1)^2 = 25 + 0 = 25. Yes.

(2,4)(2, 4): (22)2+(4+1)2=0+25=25(2-2)^2 + (4+1)^2 = 0 + 25 = 25. Yes.

(5,3)(5, 3): (52)2+(3+1)2=9+16=25(5-2)^2 + (3+1)^2 = 9 + 16 = 25. Yes.

All four are on the circle. Notice the approach: the question "is this point on the graph?" is answered by algebra (substitute and check), not by drawing anything. The graph is a set; membership in a set is checked by the membership condition — which is the equation. This is the algebra–geometry bridge in its purest form.

☠ KNOWN HAZARDS

  • Swapping coordinates. (3,2)(3, -2) is NOT the same point as (2,3)(-2, 3). The first coordinate is xx (horizontal), the second is yy (vertical). Order matters by definition.

  • Forgetting to square before summing in the distance formula. 32+42=9+16=5\sqrt{3^2 + 4^2} = \sqrt{9+16} = 5, not 3+4=7\sqrt{3+4} = \sqrt{7}. You must square each difference first.

  • Confusing "graph" with "plot a few points". The graph is an infinite set. Plotting a few points gives evidence for its shape; it doesn't prove it. A proper graph requires reasoning about the equation's structure.

  • Thinking the quadrant rules apply to axis points. The point (3,0)(3, 0) is on the xx-axis, not in Quadrant I or IV. Zero disqualifies it from any quadrant.

TL;DR

  • The coordinate plane is R×R\mathbb{R} \times \mathbb{R} — ordered pairs of real numbers. It was built in the Sets stratum.

  • Distance formula: d=(x2x1)2+(y2y1)2d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}. This IS the Pythagorean theorem in coordinate form.

  • Midpoint formula: M=(x1+x22,y1+y22)M = \left(\frac{x_1+x_2}{2}, \frac{y_1+y_2}{2}\right). Average each coordinate independently.

  • The graph of an equation is the SET of all points (x,y)(x,y) satisfying the equation — algebra and geometry, unified.

unlocks