All topics

s5.1.2

Reflections, Midpoints and Distance

1,000 questions

Reflecting a point is pure bookkeeping once you know the four rules: across the xx-axis (a,b)(a,b)(a,b) \to (a,-b); across the yy-axis (a,b)(a,b)(a,b) \to (-a,b); across y=xy = x the coordinates swap, (a,b)(b,a)(a,b) \to (b,a); across y=xy = -x they swap and both negate, (a,b)(b,a)(a,b) \to (-b,-a).

The midpoint of (a,b)(a,b) and (c,d)(c,d) is (a+c2,b+d2)\left(\frac{a+c}{2}, \frac{b+d}{2}\right) — average each coordinate separately.

For distance, work with the square first. d2=(ac)2+(bd)2d^2 = (a-c)^2 + (b-d)^2, and most contest questions ask for d2d^2 precisely so the radical never appears.

Practise this