Cartesian coordinate system

LVL: FREE

MODULE: Polynomials and Functions

[EXEC: MICRO_CORE]

✖️ 1. Constructing axes, quadrants, and plotting ordered pairs

📍 Axes, Quadrants & Plotting Points

  • Draw two perpendicular number lines (horizontal x-axis, vertical y-axis) that cross at the origin (0, 0).
  • An ordered pair (x,y)(x, y) tells you to move xx units horizontally, then yy units vertically.
  • The axes divide the plane into four quadrants numbered I, II, III, IV counterclockwise from top-right.
  • Quadrant I: both coordinates positive; II: x negative, y positive; III: both negative; IV: x positive, y negative.
  • Always write coordinates in parentheses with x first: (3,2)(3, -2) means right 3, down 2.

Plot (4,5)(4, 5): start at origin, move 4 right, then 5 up.

💡 Think "over then up" — x is the hallway, y is the elevator.

[EXEC: DEEP_COMPUTE]

1. Constructing axes, quadrants, and plotting ordered pairs

Constructing Axes, Quadrants, and Plotting Ordered Pairs

The Cartesian coordinate system consists of two perpendicular number lines: the horizontal xx-axis and the vertical yy-axis, intersecting at the origin (0,0)(0, 0). An ordered pair (x,y)(x, y) specifies a unique point where xx is the horizontal displacement from the origin and yy is the vertical displacement.

The axes divide the plane into four quadrants, numbered counterclockwise starting from the upper right.

Core Rules:

  • Quadrant I: x>0x > 0 and y>0y > 0
  • Quadrant II: x<0x < 0 and y>0y > 0
  • Quadrant III: x<0x < 0 and y<0y < 0
  • Quadrant IV: x>0x > 0 and y<0y < 0
  • Points on axes belong to no quadrant

The order in (x,y)(x, y) is critical: reversing coordinates changes the point's location.

Example: The point (3,2)(3, -2) lies in Quadrant IV because x=3>0x = 3 > 0 and y=2<0y = -2 < 0.

TASK_1[0 / 3]
LVL_2
EXEC: ALGORITHM

Which quadrant contains the point (-4, 5)?

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 2. Calculating the distance between two points

📏 Distance Between Two Points

  • To find distance between (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2), use d=(x2x1)2+(y2y1)2d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}.
  • This formula comes from the Pythagorean theorem applied to the horizontal and vertical legs.
  • Subtract coordinates to get the horizontal gap (x2x1)(x_2 - x_1) and vertical gap (y2y1)(y_2 - y_1).
  • Square both gaps, add them, then take the square root.
  • Order of subtraction does not matter because you square the differences.

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

💡 Imagine a right triangle connecting the two points — distance is the hypotenuse.

[EXEC: DEEP_COMPUTE]

2. Calculating the distance between two points

Calculating the Distance Between Two Points

The distance dd between two points (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) is the length of the straight line segment connecting them. This is derived by applying the Pythagorean theorem to the right triangle formed by horizontal and vertical displacements.

The horizontal leg has length x2x1|x_2 - x_1| and the vertical leg has length y2y1|y_2 - y_1|.

Core Rules:

  • Distance formula: d=(x2x1)2+(y2y1)2d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}
  • Distance is always non-negative
  • Order of points does not affect distance: d(A,B)=d(B,A)d(A, B) = d(B, A)
  • If points share the same xx or yy coordinate, the formula simplifies to one term

This formula extends the Pythagorean theorem from geometry to coordinate algebra.

Example: Distance between (1,2)(1, 2) and (4,6)(4, 6) is (41)2+(62)2=9+16=5\sqrt{(4-1)^2 + (6-2)^2} = \sqrt{9 + 16} = 5.

TASK_1[0 / 3]
LVL_2
EXEC: ALGORITHM

Find the distance between the points (3,4)(3, 4) and (3,9)(3, 9).

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 3. Finding the midpoint of a line segment

🎯 Midpoint of a Segment

  • The midpoint is the point exactly halfway between two endpoints.
  • Formula: M=(x1+x22,y1+y22)M = \left( \frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2} \right).
  • Average the x-coordinates to get the midpoint's x, average the y-coordinates to get the midpoint's y.
  • This works because you are splitting each dimension in half.
  • Always simplify fractions in your final answer.

Midpoint of (2,3)(2, 3) and (8,7)(8, 7): (2+82,3+72)=(5,5)\left( \frac{2+8}{2}, \frac{3+7}{2} \right) = (5, 5).

💡 Average = middle — just like finding the center of a seesaw.

[EXEC: DEEP_COMPUTE]

3. Finding the midpoint of a line segment

Finding the Midpoint of a Line Segment

The midpoint of a line segment is the point that divides the segment into two equal parts. For endpoints (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2), the midpoint coordinates are the averages of the corresponding coordinates.

This follows from the fact that the midpoint is equidistant from both endpoints.

Core Rules:

  • Midpoint formula: M=(x1+x22,y1+y22)M = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)
  • Each coordinate is the arithmetic mean of the endpoint coordinates
  • The midpoint always lies on the segment between the two points
  • Order of endpoints does not affect the midpoint

The midpoint formula is fundamental for bisecting segments and finding centers in geometric constructions.

Example: The midpoint of (2,3)(2, 3) and (8,7)(8, 7) is (2+82,3+72)=(5,5)\left(\frac{2+8}{2}, \frac{3+7}{2}\right) = (5, 5).

TASK_1[0 / 3]
LVL_2
EXEC: ALGORITHM

Find the midpoint of the line segment with endpoints (2,4)(2, 4) and (8,10)(8, 10).

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 4. Translating physical locations into grid coordinates

🗺️ Real Locations to Grid Coordinates

  • Choose a reference point (origin) and define which direction is positive x and positive y.
  • Measure horizontal distance from the origin for the x-coordinate.
  • Measure vertical distance from the origin for the y-coordinate.
  • Use negative values for positions left of or below the origin.
  • Units matter: specify meters, kilometers, blocks, etc.

If a park is 3 blocks east and 2 blocks north of your house (origin), its coordinates are (3,2)(3, 2).

💡 Pick your home as (0, 0) — everything else is relative to that anchor.

[EXEC: DEEP_COMPUTE]

4. Translating physical locations into grid coordinates

Translating Physical Locations into Grid Coordinates

Physical locations can be represented as points in a Cartesian plane by establishing a reference origin and scale. Each real-world position corresponds to an ordered pair based on measured displacements along perpendicular directions.

This translation requires choosing an origin point and defining unit distances for both axes.

Core Rules:

  • Origin selection: Choose a fixed reference point as (0,0)(0, 0)
  • Scale definition: Assign consistent units to each axis (e.g., 1 unit = 10 meters)
  • Direction convention: Typically east/right is positive xx, north/up is positive yy
  • Negative coordinates indicate positions opposite to the positive direction

This process converts spatial relationships into algebraic form, enabling quantitative analysis of distances and positions.

Example: If a library is 30 meters east and 40 meters north of a school (origin), its coordinates are (30,40)(30, 40) in meters.

TASK_1[0 / 3]
LVL_2
MOD: TRANSLATE

A park bench is 1515 meters west and 2020 meters north of a fountain. The fountain is the origin (0,0)(0, 0) and 11 unit equals 11 meter. What are the coordinates of the park bench?

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 5. Applications: GPS coordinate systems and basic 2D mapping in data science

🌍 GPS & Data Science Mapping

  • GPS uses latitude and longitude as coordinates: latitude is like y (north-south), longitude is like x (east-west).
  • In data science, scatter plots place data points on a grid where x and y represent different variables.
  • Cartesian grids help visualize relationships between two measurements (e.g., height vs weight).
  • Maps and navigation apps convert real-world positions into coordinate pairs for routing algorithms.
  • Understanding coordinates is essential for machine learning models that process spatial data.

A weather app plots temperature (y-axis) vs time (x-axis) to show trends.

💡 Every dot on a graph is an ordered pair — coordinates power modern tech.

[EXEC: DEEP_COMPUTE]

5. Applications: GPS coordinate systems and basic 2D mapping in data science

Applications: GPS Coordinate Systems and Basic 2D Mapping in Data Science

GPS systems use latitude and longitude as coordinates to specify locations on Earth's surface, analogous to (x,y)(x, y) pairs on a plane. Data science employs Cartesian coordinates to visualize relationships between two variables through scatter plots and spatial data analysis.

These applications demonstrate how abstract coordinate geometry models real-world phenomena.

Core Rules:

  • GPS: Latitude (north-south) and longitude (east-west) form an approximate Cartesian grid
  • Data visualization: Each data point (x,y)(x, y) represents paired measurements (e.g., height vs. weight)
  • Mapping: Coordinates enable distance calculations, route optimization, and spatial clustering
  • Coordinate precision determines location accuracy (more decimal places = finer resolution)

Cartesian systems provide the mathematical foundation for navigation, geographic information systems, and statistical graphics.

Example: A data point (65,170)(65, 170) might represent a person weighing 65 kg with height 170 cm.

TASK_1[0 / 3]
LVL_2
MOD: TRANSLATE

A data scientist creates a scatter plot of temperature and ice cream sales. If the x-coordinate represents temperature in degrees Celsius and the y-coordinate represents sales in units, what does the data point (30,150)(30, 150) represent?

DEEP_COMPUTE
ULTRA

AWAITING_CONFIRMATION

CONFIRM KNOWLEDGE ACQUISITION TO UPDATE SYSTEM ANALYTICS.