Problem 1 — Slope from Two Points (C3)
Variant 0: Through \( (2, 1) \) and \( (6, 9) \). Correct answer: m = 2.
\[ m = \frac{9 - 1}{6 - 2} = \frac{8}{4} = 2 \]
Variant 1: Through \( (-1, 4) \) and \( (3, -4) \). Correct answer: m = −2.
\[ m = \frac{-4 - 4}{3 - (-1)} = \frac{-8}{4} = -2 \]
Variant 2: Through \( (0, 5) \) and \( (4, 5) \). Correct answer: m = 0 (horizontal).
\[ m = \frac{5 - 5}{4 - 0} = \frac{0}{4} = 0 \]
A slope of 0 means the line is perfectly horizontal — both points have the same \( y \)-value, so there is no rise at all.
What to check if you got this wrong: Make sure \( \Delta y \) (difference in \( y \)-values) is in the numerator and \( \Delta x \) (difference in \( x \)-values) is in the denominator. The formula is "rise over run" — \( y \) on top, \( x \) on bottom.
Problem 2 — Point-Slope Form (C4)
Variant 0: \( m = 3 \), through \( (1, 2) \). Correct answer: y − 2 = 3(x − 1).
The point-slope template is \( y - y_1 = m(x - x_1) \). Here \( y_1 = 2 \), \( x_1 = 1 \), \( m = 3 \).
Variant 1: \( m = -2 \), through \( (-1, 3) \). Correct answer: y − 3 = −2(x + 1).
With \( x_1 = -1 \): \( x - x_1 = x - (-1) = x + 1 \). Don't forget: subtracting a negative becomes addition.
Variant 2: \( m = \frac{1}{2} \), through \( (4, 0) \). Correct answer: y = (1/2)(x − 4).
With \( y_1 = 0 \): \( y - 0 = \frac{1}{2}(x - 4) \), which simplifies to \( y = \frac{1}{2}(x-4) \). The \( y_1 = 0 \) term vanishes cleanly.
Common trap — swapping x₁ and y₁: If the point is \( (4, 0) \), then \( x_1 = 4 \) and \( y_1 = 0 \). Writing \( y - 4 = \frac12x \) treats 4 as a \( y \)-coordinate — that's wrong. Always identify which coordinate is \( x \) and which is \( y \) before plugging in.
Problem 3 — Parallel or Perpendicular? (C5)
Variant 0: \( m_1 = 3 \), \( m_2 = -\frac{1}{3} \). Correct answer: Perpendicular.
\[ m_1 \cdot m_2 = 3 \cdot \left(-\frac{1}{3}\right) = -1 \checkmark \]
Variant 1: \( m_1 = 5 \), \( m_2 = 5 \). Correct answer: Parallel.
Equal slopes, so the lines never intersect (assuming distinct lines — different \( y \)-intercepts).
Variant 2: \( m_1 = 2 \), \( m_2 = -2 \). Correct answer: Neither.
\[ m_1 \cdot m_2 = 2 \cdot (-2) = -4 \neq -1 \quad \text{(not perpendicular)} \]
\[ m_1 \neq m_2 \quad \text{(not parallel)} \]
The common error here is confusing "negative slope" with "perpendicular." The perpendicular slope to \( m = 2 \) is \( -\frac{1}{2} \), not \( -2 \).
Problem 4 — Distance Formula (C1) — Correct answer: 5
Points \( A(1, 1) \) and \( B(4, 5) \):
\[ d = \sqrt{(4-1)^2 + (5-1)^2} = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5 \]
This is the classic 3-4-5 right triangle. The exact answer is the integer 5 — not \( \sqrt25 \) (which is correct but not simplified) and not 7 (the Manhattan distance).