67 total
By the end of these notes, you will be able to:
Before diving into problems, you need to have four key formulas memorised. Everything in this topic comes back to these.
Let's say you have two points: P(x₁, y₁) and Q(x₂, y₂).
PQ=(x2−x1)2+(y2−y1)2
What this means in plain English: To find the distance between two points, subtract the x-coordinates and square the result, subtract the y-coordinates and square that result, add both squared values together, then take the square root.
💡 Think of it like a right-angled triangle. The line PQ is the hypotenuse (longest side), and the horizontal and vertical gaps are the other two sides. You're just using Pythagoras' theorem!
M=(2x1+x2, 2y1+y2)
What this means in plain English: The midpoint (the exact middle of the line) is found by taking the average of the two x-coordinates, and the average of the two y-coordinates.
💡 Average just means: add them together and divide by 2.
What this means in plain English: Gradient tells you how steep a line is. Divide the vertical change (up or down) by the horizontal change (left or right).
If one line has gradient m, then any line perpendicular (at a right angle, 90°) to it has gradient:
m⊥=−m1
This can also be written as:
m1×m2=−1
What this means in plain English: Flip the fraction and change the sign (positive becomes negative, negative becomes positive). The two gradients multiplied together always equal −1.
💡 Example: If a line has gradient 3, a perpendicular line has gradient −⅓. Check: 3 × (−⅓) = −1 ✓
Sign in to view full notes