01-04 - Coordinate Geometry (2D)
Phase: 1 | Subject: 01-04 Prerequisites: 01-02-linear-equations.md, 01-03-linear-inequalities.md Next subject: 01-05-linear-functions.md
Learning Objectives
By the end of this subject, you will be able to:
- Plot points and interpret coordinates on the Cartesian plane
- Calculate the distance between any two points using the distance formula
- Find the midpoint of a line segment using the midpoint formula
- Calculate the gradient (slope) of a line from two points
- Understand the sign and magnitude of gradient
Core Content
The Cartesian Plane
RenΓ© Descartes invented this system in the 1600s. It links algebra (equations) with geometry (shapes) by using two perpendicular number lines:
- x-axis: horizontal, positive to the right
- y-axis: vertical, positive upward
- Origin: where they cross, at (0, 0)
- Quadrants: 4 regions labelled I, II, III, IV counter-clockwise from top-right
$ y
|
II | I
|
---------+--------- x
|
III | IV
|
$
A point is written as (x, y):
- x-coordinate (horizontal position): positive = right, negative = left
- y-coordinate (vertical position): positive = up, negative = down
Plotting Points
Example: Plot (3, 2), (-1, 4), (2, -3), (-2, -1)
Start at origin (0, 0): - (3, 2): right 3, up 2 - (-1, 4): left 1, up 4 - (2, -3): right 2, down 3 - (-2, -1): left 2, down 1
Distance Between Two Points
Given points A(xβ, yβ) and B(xβ, yβ), the distance d comes from Pythagoras' theorem:
$d = β[(xβ - xβ)Β² + (yβ - yβ)Β²] $
Why this works: Imagine a right triangle where AB is the hypotenuse. The horizontal leg has length |xβ - xβ| and the vertical leg has length |yβ - yβ|. By Pythagoras: dΒ² = (xβ - xβ)Β² + (yβ - yβ)Β²
Example: Distance between (2, 3) and (6, 8)
- xβ = 2, yβ = 3, xβ = 6, yβ = 8
- d = β[(6 - 2)Β² + (8 - 3)Β²]
- d = β[4Β² + 5Β²]
- d = β[16 + 25]
- d = β41 β 6.40
Midpoint Formula
The midpoint M of segment AB has coordinates that are the AVERAGE of the endpoints:
$M = ((xβ + xβ)/2, (yβ + yβ)/2) $
Example: Midpoint of (1, 4) and (7, 10)
- x-coordinate: (1 + 7)/2 = 4
- y-coordinate: (4 + 10)/2 = 7
- Midpoint: (4, 7)
Check: (4, 7) is exactly halfway. Distance to (1, 4): β[(4-1)Β² + (7-4)Β²] = β[9+9] = β18. Distance to (7, 10): β[(7-4)Β² + (10-7)Β²] = β[9+9] = β18. Equal! β
Gradient (Slope)
β οΈ THIS IS CRITICAL β gradient is the foundation of all rate-of-change thinking. In calculus, the gradient formula (yβ-yβ)/(xβ-xβ) becomes the derivative. Understanding gradient now will make calculus much easier later.
Gradient measures how steep a line is. It's the "rise over run":
$m = (yβ - yβ) / (xβ - xβ) $
Positive gradient: line goes UP from left to right (uphill) Negative gradient: line goes DOWN from left to right (downhill) Zero gradient: horizontal line (flat) Undefined gradient: vertical line (straight up)
Example: Gradient from (1, 2) to (5, 10)
- Rise: 10 - 2 = 8
- Run: 5 - 1 = 4
- m = 8/4 = 2
This means for every 1 unit right, we go 2 units up.
Example: Gradient from (3, 7) to (6, 1)
- Rise: 1 - 7 = -6
- Run: 6 - 3 = 3
- m = -6/3 = -2
This line goes downhill: for every 1 unit right, we go 2 units down.
Important Properties
- Parallel lines have the SAME gradient
- Perpendicular lines have gradients that are NEGATIVE RECIPROCALS: mβ Γ mβ = -1
- If mβ = 2, then mβ = -1/2
- If mβ = -3/4, then mβ = 4/3
Common pitfall β vertical lines: A vertical line has equation x = c. Its gradient is UNDEFINED (division by zero: run = 0). You cannot use the gradient formula for vertical lines β the formula gives a zero denominator. Similarly, a horizontal line has gradient 0.
Common pitfall β distance formula ordering: The distance formula uses (xβ-xβ)Β² and (yβ-yβ)Β². Since squaring eliminates the sign, the order of subtraction DOES NOT matter: (xβ-xβ)Β² = (xβ-xβ)Β². You can subtract in whichever order gives positive numbers for easier mental math.
Key Terms
- Parallel lines
- Perpendicular lines
Worked Examples
Example 1: Find the distance between (-2, 5) and (4, -1)
- xβ = -2, yβ = 5, xβ = 4, yβ = -1
- d = β[(4 - (-2))Β² + (-1 - 5)Β²]
- d = β[6Β² + (-6)Β²]
- d = β[36 + 36]
- d = β72 = β(36 Γ 2) = 6β2 β 8.49
Example 2: Find the midpoint of (3, -4) and (9, 8)
- x-coordinate: (3 + 9)/2 = 6
- y-coordinate: (-4 + 8)/2 = 2
- Midpoint: (6, 2)
Example 3: Find the gradient of the line through (2, 3) and (5, 11), then determine if it's parallel to the line through (0, 1) and (3, 10)
- First line: m = (11 - 3)/(5 - 2) = 8/3
- Second line: m = (10 - 1)/(3 - 0) = 9/3 = 3
- 8/3 β 3, so the lines are NOT parallel
Quiz
Q1: What does the concept of Parallel lines primarily refer to in this subject?
A) A computational error related to Parallel lines B) The definition and application of Parallel lines C) A historical anecdote about Parallel lines D) A visual representation of Parallel lines
Correct: B)
- If you chose A: This is incorrect. Parallel lines is defined as: the definition and application of parallel lines. The other options describe different aspects that are not the primary focus.
- If you chose B: Parallel lines is defined as: the definition and application of parallel lines. The other options describe different aspects that are not the primary focus. Correct!
- If you chose C: This is incorrect. Parallel lines is defined as: the definition and application of parallel lines. The other options describe different aspects that are not the primary focus.
- If you chose D: This is incorrect. Parallel lines is defined as: the definition and application of parallel lines. The other options describe different aspects that are not the primary focus.
Q2: What is the primary purpose of Perpendicular lines?
A) It replaces all other methods in this domain B) It is primarily a historical notation system C) It is used only in advanced research contexts D) It is used to perpendicular lines in mathematical analysis
Correct: D)
- If you chose A: This is incorrect. Perpendicular lines serves the purpose described in the correct answer. The other options misrepresent its role.
- If you chose B: This is incorrect. Perpendicular lines serves the purpose described in the correct answer. The other options misrepresent its role.
- If you chose C: This is incorrect. Perpendicular lines serves the purpose described in the correct answer. The other options misrepresent its role.
- If you chose D: Perpendicular lines serves the purpose described in the correct answer. The other options misrepresent its role. Correct!
Q3: Which statement about The Cartesian Plane is TRUE?
A) The Cartesian Plane is mentioned only as a historical footnote B) The Cartesian Plane is an advanced topic beyond this subject's scope C) The Cartesian Plane is a fundamental concept covered in this subject D) The Cartesian Plane is not related to this subject
Correct: C)
- If you chose A: This is incorrect. The Cartesian Plane is a fundamental concept covered in this subject. This subject covers The Cartesian Plane as part of its core content.
- If you chose B: This is incorrect. The Cartesian Plane is a fundamental concept covered in this subject. This subject covers The Cartesian Plane as part of its core content.
- If you chose C: The Cartesian Plane is a fundamental concept covered in this subject. This subject covers The Cartesian Plane as part of its core content. Correct!
- If you chose D: This is incorrect. The Cartesian Plane is a fundamental concept covered in this subject. This subject covers The Cartesian Plane as part of its core content.
Q4: Based on the worked examples in this subject, what is the correct result?
A) A different result from a common mistake B) 3. Not parallel. C) An unrelated numerical value D) The inverse of the correct answer
Correct: B)
- If you chose A: This is incorrect. The worked examples show that the result is 3. Not parallel.. The other options represent common errors.
- If you chose B: The worked examples show that the result is 3. Not parallel.. The other options represent common errors. Correct!
- If you chose C: This is incorrect. The worked examples show that the result is 3. Not parallel.. The other options represent common errors.
- If you chose D: This is incorrect. The worked examples show that the result is 3. Not parallel.. The other options represent common errors.
Q5: How are The Cartesian Plane and Plotting Points related?
A) The Cartesian Plane is a special case of Plotting Points B) The Cartesian Plane and Plotting Points are completely unrelated topics C) The Cartesian Plane and Plotting Points are closely related concepts D) The Cartesian Plane is the inverse of Plotting Points
Correct: C)
- If you chose A: This is incorrect. Both The Cartesian Plane and Plotting Points are covered in this subject as interconnected topics.
- If you chose B: This is incorrect. Both The Cartesian Plane and Plotting Points are covered in this subject as interconnected topics.
- If you chose C: Both The Cartesian Plane and Plotting Points are covered in this subject as interconnected topics. Correct!
- If you chose D: This is incorrect. Both The Cartesian Plane and Plotting Points are covered in this subject as interconnected topics.
Q6: What is a common pitfall when working with Distance Between Two Points?
A) The main error with Distance Between Two Points is using it when it is not needed B) A common mistake is confusing Distance Between Two Points with a similar concept C) Distance Between Two Points has no common misconceptions D) Distance Between Two Points is always computed the same way in all contexts
Correct: B)
- If you chose A: This is incorrect. Students often confuse Distance Between Two Points with similar-sounding or related concepts. Pay attention to the precise definitions.
- If you chose B: Students often confuse Distance Between Two Points with similar-sounding or related concepts. Pay attention to the precise definitions. Correct!
- If you chose C: This is incorrect. Students often confuse Distance Between Two Points with similar-sounding or related concepts. Pay attention to the precise definitions.
- If you chose D: This is incorrect. Students often confuse Distance Between Two Points with similar-sounding or related concepts. Pay attention to the precise definitions.
Q7: When should you apply Midpoint Formula?
A) Midpoint Formula is not practically useful B) Apply Midpoint Formula to solve problems in this subject's domain C) Avoid Midpoint Formula unless explicitly instructed D) Use Midpoint Formula only in pure mathematics contexts
Correct: B)
- If you chose A: This is incorrect. Midpoint Formula is a practical tool used throughout this subject to solve relevant problems.
- If you chose B: Midpoint Formula is a practical tool used throughout this subject to solve relevant problems. Correct!
- If you chose C: This is incorrect. Midpoint Formula is a practical tool used throughout this subject to solve relevant problems.
- If you chose D: This is incorrect. Midpoint Formula is a practical tool used throughout this subject to solve relevant problems.
Practice Problems
- Find the distance between (0, 0) and (3, 4)
Click for answer
β[(3-0)Β² + (4-0)Β²] = β[9+16] = β25 = 5
- Find the midpoint of (2, 5) and (8, 9)
Click for answer
((2+8)/2, (5+9)/2) = (5, 7)
- Find the gradient of the line through (1, 2) and (4, 8)
Click for answer
(8-2)/(4-1) = 6/3 = 2
- Find the gradient of the line through (3, 7) and (6, 1)
Click for answer
(1-7)/(6-3) = -6/3 = -2
- Are the lines through (0, 0), (2, 3) and (1, 1), (3, 7) parallel?
Click for answer
First: 3/2 = 1.5. Second: (7-1)/(3-1) = 6/2 = 3. Not parallel.
- Find the distance between (-1, -2) and (3, 4)
Click for answer
β[(3-(-1))Β² + (4-(-2))Β²] = β[4Β² + 6Β²] = β[16+36] = β52 = 2β13 β 7.21
Summary
Key takeaways:
- Coordinates (x, y) locate points on the Cartesian plane
- Distance formula comes from Pythagoras: d = β[(xβ-xβ)Β² + (yβ-yβ)Β²]
- Midpoint formula averages the coordinates: M = ((xβ+xβ)/2, (yβ+yβ)/2)
- Gradient = rise/run = (yβ-yβ)/(xβ-xβ)
- Positive gradient = uphill, negative = downhill, zero = flat, undefined = vertical
- Parallel lines have equal gradients
- Perpendicular lines have gradients that multiply to -1 (negative reciprocals)
Pitfalls
- Confusing the distance formula order. Students often worry about which point is (xβ, yβ) and which is (xβ, yβ). Since the differences are squared, the order DOES NOT matter: (xβ - xβ)Β² = (xβ - xβ)Β². Choose whichever order gives easier arithmetic.
- Computing gradient as run/rise instead of rise/run. Gradient is rise over run: m = (yβ - yβ)/(xβ - xβ). A common error is to divide the change in x by the change in y, which gives the reciprocal of the true gradient.
- Treating the midpoint as (xβ + xβ, yβ + yβ) without dividing by 2. The midpoint is the AVERAGE of the endpoints. After adding, you must divide each coordinate by 2.
- Forgetting that perpendicular gradients are negative reciprocals, not just reciprocals. If a line has gradient 2, the perpendicular gradient is -1/2, not 1/2. The negative sign is essential: mβ Γ mβ = -1.
- Attempting to calculate the gradient of a vertical line. A vertical line (x = c) has undefined gradient because run = 0, causing division by zero in the gradient formula. Don't try to use the gradient formula for vertical lines β recognise them directly.
Next Steps
Next up: 01-05-linear-functions.md