๐ Purpose: Learn the common forms of a straight line, compute gradients, work with intercepts, test parallelism and perpendicularity, and apply these ideas to real-world inclines and simple modelling.
| Term | Definition / Note |
|---|---|
| Gradient (m) | Slope of the line: m = (y2 โ y1) รท (x2 โ x1). Rise over run; positive โ uphill to the right, negative โ downhill to the right. |
| y = mx + c | Gradient-intercept form: m = gradient, c = y-intercept (value where x = 0). |
| ax + by + d = 0 | General form. Convert to y = mx + c by isolating y: y = (โa/b)x โ d/b (if b โ 0). |
| Point-gradient form | y โ y1 = m(x โ x1). Use when a point and gradient are known. |
| Parallel lines | Two lines are parallel โ their gradients are equal: m1 = m2. |
| Perpendicular lines | Two lines are perpendicular โ m1 ร m2 = โ1 (i.e., m2 = โ1/m1, assuming neither is vertical). |
| Vertical / horizontal lines | Vertical: x = k (undefined gradient). Horizontal: y = k (m = 0). |
๐ How to compute gradient (3 quick ways)
- From two points (x1, y1) and (x2, y2):
m = (y2 โ y1)/(x2 โ x1). Always subtract in the same order. - From y = mx + c: read off m directly.
- From ax + by + d = 0 (b โ 0): rearrange:
y = (โa/b)x โ d/bโm = โa/b.
๐ Common forms & quick conversions
- Gradientโintercept:
y = mx + cโ easiest to interpret (m slope, c y-intercept). - Pointโgradient:
y โ y1 = m(x โ x1)โ ideal when you know one point and slope. - General:
ax + by + d = 0โ convert to y = mx + c by isolating y (if possible). - Two-point to equation: Given two points, compute m then use point-gradient to get equation.
๐ Short worked examples
Example 1 (gradient from points): Points (1,2) and (4,8): m = (8 โ 2)/(4 โ 1) = 6/3 = 2. Equation using (1,2): y โ 2 = 2(x โ 1) โ y = 2x (c = 0).
Example 2 (perpendicular): Line L has m = 3. A perpendicular line has m = โ1/3. Use point-gradient to form equation if a point is given.
๐งฎ GDC Tips
- Use two-point input or line-fit routines (if available) to get equation quickly from data points.
- Use matrix or function tools to convert between forms (solve for y to get m and c).
- Check gradient numerically by computing (y2 โ y1)/(x2 โ x1) on the calculator to avoid arithmetic mistakes.
๐ง Examiner Tip
Write clean steps: show how you computed m, which form you used, and how you rearranged to the requested form. For perpendicular questions explicitly show the negative reciprocal step.
๐ Paper tips
- Paper 1: quick calculations โ label points and show subtraction order for slope.
- Paper 2: interpret gradient in context (e.g., incline steepness, rate of change).
โ ๏ธ Common pitfalls
- Mixing up the order of subtraction in slope formula โ always (y2 โ y1)/(x2 โ x1).
- For vertical lines (x = k), do not attempt to compute m (it is undefined).
- When testing perpendicularity ensure neither line is vertical before using negative reciprocal; if one is vertical, the other must be horizontal (m = 0).
๐ Quick checklist
- Identify knowns: two points / point & gradient / equation coefficients.
- Compute gradient using correct formula and order.
- Write equation in requested form (y = mx + c / ax + by + d = 0 / point-gradient).
- For parallel/perpendicular: compare gradients (equal / negative reciprocal).