Module 1 · Mathematical Communication and Geometry
Section 1: Introduction
▾
Think about the last time you drove up a steep hill. Some hills feel gentle; others feel like you're launching into orbit. That steepness — how much you rise for every metre you travel forward — has a precise mathematical name: slope.
Or think about a car's speedometer. Speed is distance divided by time — change in position divided by change in time. That fraction, \( \Delta d / \Delta t \), is exactly the same idea as slope, just applied to motion instead of geometry.
Slope isn't a geometry concept. It's a universal concept. It measures how fast one quantity changes relative to another. That's why it appears everywhere: in physics, in economics, in biology, in engineering.
A teaser for what's coming. In calculus, you'll encounter something called the derivative. It sounds intimidating — but once you've worked through this course, you'll recognize it immediately: the derivative is just a slope. Specifically, it's the slope of the curve at a single point, computed by finding slopes of secant lines through nearby points and asking what value they approach.
Everything in this lesson — distance, midpoint, slope, line equations, secant lines — is building toward that moment. You won't learn the derivative today. But by the time you meet it in calculus, it will feel like an old friend.
After this lesson, you will be able to:
Compute the exact distance between two points using \( d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2} \)
Find the midpoint of a segment using \( M = \left(\frac{x_1+x_2}{2},\, \frac{y_1+y_2}{2}\right) \)
Compute slope as \( m = \frac{\Delta y}{\Delta x} \) and interpret its sign and magnitude
Write equations of lines in point-slope form \( y - y_1 = m(x - x_1) \) — the primary form used in calculus
Identify parallel and perpendicular lines using slope relationships
Find the equation of the secant line through two points on a curve
Section 2: Prerequisites
▾
This lesson builds directly on COM-1. The notation habits you established there — vertical work, exact values, implication arrows — are expected throughout. Here's what else you'll need:
What you'll need from COM-1:
Vertical work and exact values: Coordinates like \( \frac52 \) stay as fractions — not 2.5, not "approximately 2.5"
Equals sign discipline: Each algebraic step gets its own line; slope calculations are not run-on chains
What you'll need from before this course:
The Cartesian plane: Plotting points \( (x, y) \), identifying quadrants, understanding that the horizontal axis is \( x \) and the vertical axis is \( y \)
Fraction arithmetic: Adding, subtracting, multiplying, and dividing fractions — without a calculator
The Pythagorean theorem: \( a^2 + b^2 = c^2 \) for a right triangle with legs \( a, b \) and hypotenuse \( c \)
Before continuing, check your comfort level:
If the Pythagorean theorem feels rusty, review it now — the distance formula is built on it, and it appears everywhere in this lesson.
Section 3: Core Concepts
▾
C1 — The Distance Formula
Place two points on a coordinate plane: \( A(x_1, y_1) \) and \( B(x_2, y_2) \). To find the straight-line distance between them, draw a right triangle: the horizontal leg has length \( |x_2 - x_1| \) and the vertical leg has length \( |y_2 - y_1| \). The distance \( AB \) is the hypotenuse.
Common error — the "Manhattan distance" trap: Writing \( d = |4-1| + |6-2| = 3 + 4 = 7 \). This gives the distance you'd walk along a grid (like city blocks) — not the straight-line distance. Always square each difference, add, then take the square root.
C2 — The Midpoint Formula
The midpoint of a segment is the point exactly halfway between its two endpoints. You find it by averaging each coordinate separately.
Add the two \( x \)-values and divide by 2; add the two \( y \)-values and divide by 2.
Common error — subtraction instead of addition: Writing \( \frac{y_2 - y_1}{2} \) instead of \( \frac{y_1 + y_2}{2} \). The midpoint uses the average (sum ÷ 2), not the half-difference. If you need to, say out loud: "add, then halve."
C3 — Slope
Slope measures steepness: how much a line rises (or falls) for every unit it moves to the right. It's the ratio of vertical change to horizontal change.
Given any two distinct points on a line, the slope is the same regardless of which two points you choose — this is what makes slope a property of the line, not just the points.
Special cases:
Zero slope (\( m = 0 \)): the line is horizontal — it doesn't rise or fall at all
Undefined slope: the line is vertical (\( x_2 = x_1 \), so the denominator is zero) — these are written as \( x = c \), not \( y = \ldots \)
The most common slope error: reversing the formula and writing \( \frac{x_2 - x_1}{y_2 - y_1} \). The mnemonic is "rise over run" — rise is vertical (\( \Delta y \)), run is horizontal (\( \Delta x \)). The \( y \)-values always go in the numerator.
C4 — Equations of Lines
Once you know a slope and one point on a line, you can write its equation. There are two standard forms — and in calculus, one of them is far more useful than the other.
Point-Slope Form (primary)
\[ y - y_1 = m(x - x_1) \]
where \( m \) is the slope and \( (x_1, y_1) \) is any known point on the line.
Slope-Intercept Form (derived)
\[ y = mx + b \]
where \( b = y_1 - mx_1 \) is the \( y \)-intercept. This is obtained by expanding point-slope and solving for \( y \).
Why point-slope is the primary form in calculus. In calculus, you'll be given a point on a curve and a slope (the "tangent slope") — you'll almost never know the \( y \)-intercept directly. Point-slope form lets you write the equation immediately from what you have. Starting with slope-intercept forces you to compute \( b = y_1 - mx_1 \) as an extra step — and that's an extra opportunity for an error.
Get comfortable reaching for point-slope first. You can always expand it to slope-intercept afterwards if you need to.
Example: slope \( m = 3 \), through \( (2, 5) \):
\[ y - 5 = 3(x - 2) \]
That's it — that's the equation. If you need slope-intercept:
\[ y - 5 = 3x - 6 \implies y = 3x - 1 \]
C5 — Parallel and Perpendicular Lines
Parallel and Perpendicular Slope Relationships
Parallel lines have equal slopes: \( m_1 = m_2 \). They never intersect.
Perpendicular lines have slopes whose product is \( -1 \): \( m_1 \cdot m_2 = -1 \), so \( m_2 = -\dfrac{1}{m_1} \). They intersect at a right angle.
The perpendicular slope rule is sometimes stated as "negate and take the reciprocal." Both operations are required:
If \( m_1 = 3 \), then \( m_2 = -\frac{1}{3} \) (not \( -3 \), which only negates; not \( \frac{1}{3} \), which only reciprocates)
If \( m_1 = -\frac{2}{5} \), then \( m_2 = \frac{5}{2} \) (negate: \( \frac{2}{5} \), reciprocate: \( \frac{5}{2} \))
Common error — half the operation: Given slope 4, writing the perpendicular slope as \( -4 \) (only negated) or \( \frac14 \) (only reciprocated). The correct perpendicular slope is \( -\frac14 \). Both operations are always required.
C6 — Secant Lines
A secant line is a straight line that crosses a curve at exactly two distinct points. Its slope measures the average rate of change of the curve between those two points.
Slope of a Secant Line
If a curve is defined by \( y = f(x) \) and the secant passes through \( (a, f(a)) \) and \( (b, f(b)) \), then:
\[ m_{\text{sec}} = \frac{f(b) - f(a)}{b - a} \]
This is simply the slope formula \( \Delta y / \Delta x \) — applied to two points on a curve rather than a line.
The secant line is the bridge between algebra and calculus. In the interactive visualization below, the fixed point P is anchored at \( (1, 1) \) on the parabola \( f(x) = x^2 \). Drag the slider to move the second point Q along the curve. Watch what happens to the slope of the secant as Q approaches P.
Slope of secant PQ: m = 3.50
What do you notice? As you drag Q toward P (sliding x₂ toward 1), the slope values get closer and closer to a specific number. That limiting value — the slope the secant approaches as the two points merge — is what calculus calls the derivative of \( f \) at \( x = 1 \). You'll formalize this in BTC-2.
Section 4: Worked Examples
▾
Example 1 — Distance and Midpoint (C1, C2)
Find the exact distance and midpoint between \( A(-3, 1) \) and \( B(1, 4) \).
Step 2 — Write in point-slope form (using the point \( (3, -5) \)):
\[ y - (-5) = -2(x - 3) \]
\[ y + 5 = -2(x - 3) \]
Step 3 — Expand to slope-intercept if needed:
\[ y + 5 = -2x + 6 \implies y = -2x + 1 \]
Check: Using the other point \( (-2, 5) \) gives \( y - 5 = -2(x - (-2)) = -2(x + 2) \implies y = -2x + 1 \) — the same result. Either point works in step 2.
Example 4 — The Secant Line (C3, C4, C6)
Let \( f(x) = x^2 \). Find the equation of the secant line through \( (1, f(1)) \) and \( (3, f(3)) \).
Notice: we evaluated \( f \) at two points on a curve, computed a slope, then wrote a line equation — using nothing but C1–C4 skills. This is exactly the difference quotient from BTC-2, before taking the limit.
Section 5: Guided Practice
▾
Choose the correct answer from the dropdown. If your choice is wrong, you'll see an explanation of why — and why the correct answer is right.
Problem 1 — Slope from Two Points (C3)
Find the slope of the line through \( (2, 1) \) and \( (6, 9) \).
Find the slope of the line through \( (-1, 4) \) and \( (3, -4) \).
Find the slope of the line through \( (0, 5) \) and \( (4, 5) \).
Find the slope of the line through \( (1, 3) \) and \( (5, 5) \).
Find the slope of the line through \( (3, 7) \) and \( (3, 2) \).
Problem 2 — Point-Slope Form (C4)
A line has slope \( m = 3 \) and passes through \( (1, 2) \). Which equation is correct?
A line has slope \( m = -2 \) and passes through \( (-1, 3) \). Which equation is correct?
A line has slope \( m = \frac{1}{2} \) and passes through \( (4, 0) \). Which equation is correct?
A line has slope \( m = -\dfrac{1}{3} \) and passes through \( (3, 5) \). Which equation is correct?
A line has slope \( m = 4 \) and passes through \( (-2, 1) \). Which equation is correct?
Problem 3 — Parallel or Perpendicular? (C5)
Line 1 has slope \( m_1 = 3 \). Line 2 has slope \( m_2 = -\dfrac{1}{3} \). What is their relationship?
Line 1 has slope \( m_1 = 5 \). Line 2 also has slope \( m_2 = 5 \). What is their relationship?
Line 1 has slope \( m_1 = 2 \). Line 2 has slope \( m_2 = -2 \). What is their relationship?
Line 1 has slope \( m_1 = -\dfrac{1}{2} \). Line 2 has slope \( m_2 = 2 \). What is their relationship?
Line 1 has slope \( m_1 = 3 \). Line 2 has slope \( m_2 = 6 \). What is their relationship?
Problem 4 — Distance Formula (C1)
Find the exact distance between \( A(1, 1) \) and \( B(4, 5) \).
Section 6: Independent Practice
▾
Work through each problem independently. Show your steps using vertical work from COM-1. Use the "Show Solution" toggle to check your reasoning — not just your answer.
Problem 1 — Distance and Midpoint (C1, C2)
Problem 2 — Slope from Two Points (C3)
Problem 3 — Equation of a Line Through Two Points (C3, C4)
Write the equation of the line through \( (2, 3) \) and \( (5, 9) \) in point-slope form.
Show Solution
Step 1 — Slope:
\[ m = \frac{9 - 3}{5 - 2} = \frac{6}{3} = 2 \]
Step 2 — Point-slope form (using \( (2, 3) \)):
\[ y - 3 = 2(x - 2) \]
Equivalent slope-intercept: \( y = 2x - 1 \)
Write the equation of the line through \( (-1, 5) \) and \( (3, -3) \) in point-slope form.
Write the equation of the line through \( (3, 2) \) and \( (6, 11) \) in point-slope form.
Show Solution
Step 1 — Slope:
\[ m = \frac{11 - 2}{6 - 3} = \frac{9}{3} = 3 \]
Step 2 — Point-slope form (using \( (3, 2) \)):
\[ y - 2 = 3(x - 3) \]
Equivalent slope-intercept: \( y = 3x - 7 \)
Problem 4 — Perpendicular Line Through a Point (C5, C4)
A line has slope \( m = 3 \) and passes through the point \( (6, 2) \). Find the equation of the line perpendicular to it that also passes through \( (6, 2) \).
Show Solution
Step 1 — Perpendicular slope:
\[ m_{\perp} = -\frac{1}{3} \quad (\text{negate and reciprocate}) \]
Step 2 — Point-slope form through \( (6, 2) \):
\[ y - 2 = -\frac{1}{3}(x - 6) \]
Slope-intercept: \( y = -\dfrac{1}{3}x + 4 \)
A line has equation \( y = -2x + 1 \). Find the equation of the line perpendicular to it that passes through \( (0, 4) \).
Show Solution
Step 1 — Read slope and find perpendicular slope:
\[ m = -2 \implies m_{\perp} = \frac{1}{2} \]
Step 2 — Point-slope form through \( (0, 4) \):
\[ y - 4 = \frac{1}{2}(x - 0) \implies y = \frac{1}{2}x + 4 \]
A line has equation \( y = \dfrac{1}{2}x - 3 \). Find the equation of the line perpendicular to it that passes through \( (2, -1) \).
Show Solution
Step 1 — Read slope and find perpendicular slope:
\[ m = \frac{1}{2} \implies m_{\perp} = -2 \]
Step 2 — Point-slope form through \( (2, -1) \):
\[ y - (-1) = -2(x - 2) \]
\[ y + 1 = -2(x - 2) \]
Slope-intercept: \( y = -2x + 3 \)
A line has equation \( y = \dfrac{1}{3}x + 5 \). Find the equation of the line perpendicular to it that passes through \( (-3, 4) \).
Show Solution
Step 1 — Read slope and find perpendicular slope:
\[ m = \frac{1}{3} \implies m_{\perp} = -3 \]
Step 2 — Point-slope form through \( (-3, 4) \):
\[ y - 4 = -3(x - (-3)) \]
\[ y - 4 = -3(x + 3) \]
Slope-intercept: \( y = -3x - 5 \)
A line has equation \( y = -4x + 2 \). Find the equation of the line perpendicular to it that passes through \( (4, 1) \).
Show Solution
Step 1 — Read slope and find perpendicular slope:
\[ m = -4 \implies m_{\perp} = \frac{1}{4} \]
Step 2 — Point-slope form through \( (4, 1) \):
\[ y - 1 = \frac{1}{4}(x - 4) \]
Slope-intercept: \( y = \dfrac{1}{4}x \)
Problem 5 — Secant Line on a Curve (C3, C4, C6)
Let \( f(x) = x^2 - 2x \). Find the equation of the secant line through \( (1,\, f(1)) \) and \( (4,\, f(4)) \). Write your answer in point-slope form.
In your own words, explain why point-slope form is more useful than slope-intercept form in calculus. Your answer should mention: (1) what information you typically know when working with curves, and (2) what extra step slope-intercept requires that point-slope avoids.
0 / 600 characters
Show Model Answer
In calculus, when you find a tangent line to a curve at a specific point, you know two things: the coordinates of the point \( (x_1, y_1) \) and the slope \( m \) at that point (from the derivative). You almost never know the \( y \)-intercept directly.
Point-slope form \( y - y_1 = m(x - x_1) \) lets you write the equation immediately using exactly what you know. Slope-intercept form \( y = mx + b \) requires computing \( b = y_1 - m x_1 \) as an extra step — this isn't hard, but it's an additional arithmetic operation and an extra place to make an error.
More importantly, the point-slope structure mirrors how you find tangent lines in calculus: "I know a point, I have a slope, here's the line." Starting with slope-intercept hides that structure.
Apply
Find the equation of the line perpendicular to \( y = -\dfrac{1}{3}x + 5 \) that passes through \( (2, 1) \). Write your answer in both point-slope and slope-intercept forms.
The error: The student has computed \( \Delta x / \Delta y \) instead of \( \Delta y / \Delta x \). They put the \( x \)-differences in the numerator and the \( y \)-differences in the denominator — exactly backwards.
Note that the correct slope \( -\frac{3}{2} \) is the reciprocal of the student's answer \( -\frac{2}{3} \). This is the tell-tale sign of a reversed-formula error.
Self-Assessment
How confident are you with the six core concepts from this lesson?
Still confusedVery confident
Section 8: Boss Fight
▾
You've practiced individual concepts. Now combine them — under real constraints. Choose your path:
📐 The Surveyor
You're mapping three city intersections. Using only coordinates, determine whether a key road is perpendicular to another, locate a meeting point, and write the equation of a new road. Think like a city planner with a coordinate grid.
📈 The Analyst
You're analyzing the shape of a curve by drawing secant lines through nearby points. You'll compute two secant lines, write their equations, and reason — without any calculus — about what happens as the two points get closer and closer. Think like a mathematician staring at the first glimpse of the derivative.
📐 Path A: The Surveyor
The situation: A city grid has three intersections at coordinates \( A(0,\, 0) \), \( B(4,\, 3) \), and \( C(7,\, -1) \).
Is road AB perpendicular to road BC? Compute the slopes of AB and BC and apply the perpendicularity test.
Find the midpoint M of segment AC. This is where a new water main will be installed.
Write the equation of the new access road passing through M that runs parallel to road AB.
Parallel to AB means same slope: \( m = \dfrac{3}{4} \).
Point-slope form through \( M = \left(\dfrac{7}{2}, -\dfrac{1}{2}\right) \):
\[ y - \left(-\frac{1}{2}\right) = \frac{3}{4}\left(x - \frac{7}{2}\right) \]
\[ y + \frac{1}{2} = \frac{3}{4}\left(x - \frac{7}{2}\right) \]
Slope-intercept form: \( y = \dfrac{3}{4}x - \dfrac{23}{8} \)
What to check: Did you verify the perpendicularity with the product test (not just by "looking at" the slopes)? Did you leave the midpoint as an exact fraction rather than a decimal? Did you use point-slope, not slope-intercept, as your starting point?
📈 Path B: The Analyst
The setup: Let \( f(x) = x^2 + 1 \).
Find the equation of the secant line through \( \bigl(1,\, f(1)\bigr) \) and \( \bigl(3,\, f(3)\bigr) \).
Find the equation of the secant line through \( \bigl(1,\, f(1)\bigr) \) and \( \bigl(2,\, f(2)\bigr) \).
As the second point moves from \( x = 3 \) to \( x = 2 \), the slope of the secant changed. In your own words: what is happening geometrically to the secant line as the second point slides closer and closer to \( (1, 2) \)? What do you think the slope would approach — and what would that limiting line represent?
As the second point slides from \( x = 3 \) toward \( x = 1 \), the secant line rotates around the anchor point \( (1, 2) \). With \( x_2 = 3 \), the slope is 4; with \( x_2 = 2 \), the slope is 3. As \( x_2 \) continues moving toward 1, the slope keeps decreasing — approaching the slope of the curve at the single point \( (1, 2) \).
That limiting line — the one the secant approaches as the second point merges with the first — is the tangent line to the curve at \( (1, 2) \). Its slope is what calculus calls the derivative of \( f \) at \( x = 1 \). (For \( f(x) = x^2 + 1 \), the derivative at \( x = 1 \) is \( 2 \) — you'd need calculus to show this rigorously, but you can see the secant slopes 4, 3, … trending toward it.)
Section 9: Challenge Problems
▾
Optional stretch. These go beyond the lesson objectives and connect to deeper ideas. Attempt them when you feel confident with the core material.
Challenge 1 — The Perpendicular Bisector (C1, C2, C4, C5)
The perpendicular bisector of a segment is the line that (1) passes through the midpoint of the segment and (2) is perpendicular to the segment.
Find the equation of the perpendicular bisector of the segment from \( A(1, 3) \) to \( B(5, 1) \).
Show Solution
Step 1 — Midpoint:
\[ M = \left(\frac{1+5}{2},\; \frac{3+1}{2}\right) = (3, 2) \]
Perpendicular bisectors are used in calculus when finding the center of a circle tangent to a curve at a point — a concept related to curvature.
Challenge 2 — Three Equal Distances (C1)
Show that the three points \( A(0, 0) \), \( B(2, 0) \), \( C(1, \sqrt{3}) \) form an equilateral triangle — that is, all three side lengths are equal.
Since \( AB = BC = AC = 2 \), triangle \( ABC \) is equilateral. \( \blacksquare \)
Notice how the exact form \( \sqrt{3} \) was essential — a decimal approximation of \( C \) would produce rounding errors that make the equilateral property impossible to verify cleanly.
Challenge 3 — The Secant Slope Pattern (C3, C6)
Let \( f(x) = x^2 \). Consider the secant line through the fixed point \( (2, 4) \) and the movable point \( (2+h,\; f(2+h)) \).
Compute the slope of this secant for \( h = 1,\; 0.5,\; 0.1,\; 0.01 \). Record the four values.
Without computing, what value does the slope appear to approach as \( h \to 0 \)?
Bonus: Simplify the general formula \( \dfrac{f(2+h) - f(2)}{h} \) algebraically (expand \( (2+h)^2 \)). What does the formula become after cancelling \( h \)?
As \( h \to 0 \), this expression \( 4 + h \to 4 \). So the slope approaches exactly \( 4 \) — which is the derivative of \( x^2 \) at \( x = 2 \). In BTC-2, you'll generalize this with the difference quotient \( \dfrac{f(x+h) - f(x)}{h} \).
You just computed your first derivative — without any calculus. The algebraic simplification in part (c) is exactly what the difference quotient formula does. Welcome to the threshold.
Section 10: Solutions Reference
▾
Complete, step-by-step solutions for all problems in Sections 5–9 are on the solutions page, including the generator problem patterns and Boss Fight full worked solutions.
If you're stuck on slope problems: Re-read C3 in Section 3 — especially the mnemonic "rise over run, \( y \) on top." Then look at Examples 2 and 3 in Section 4, which both compute slopes as the first step.
If you're stuck on line equations: Re-read C4. Remember: always start with point-slope, then expand to slope-intercept only if needed.