Applications and shape recognition
A common board question: given four points, determine the type of quadrilateral they form. The toolkit is just distance and midpoint formulas , but you must apply them in the right order.
Triangle classification
For a triangle with vertices :
- Equilateral: .
- Isoceles: at least two sides equal.
- Scalene: all three sides different.
- Right: by the converse of Pythagoras, the sum of squares of two sides equals the square of the third.
You'll often check more than one to confirm. A right isoceles triangle, for example, has two equal sides AND satisfies Pythagoras.
Quadrilateral classification
For a quadrilateral with vertices taken in order:
| Type | Test |
|---|---|
| Parallelogram | Opposite sides equal: and . Or: midpoint of = midpoint of (diagonals bisect each other). |
| Rhombus | Parallelogram AND all four sides equal: . |
| Rectangle | Parallelogram AND diagonals equal: . |
| Square | Parallelogram AND all sides equal AND diagonals equal. |
A clean strategy:
- Compute all four sides .
- Compute both diagonals .
- Compare. Equal sides? Equal diagonals? Equal opposite sides?
(Sometimes a problem gives vertices out of order; relabelling to traverse the quadrilateral in order is the first step.)
Worked examples
Example 1. Show that are vertices of a square.
Compute sides: . . . .
All equal , at least a rhombus.
Diagonals: . . Equal , square. ✓
Example 2. Show that form a rectangle.
. . . .
Opposite sides equal ⇒ parallelogram.
Diagonals: . .
, not equal. Hmm, that means it's a parallelogram but not a rectangle. Let me re-check…
Actually, on reflection the problem may have intended a parallelogram. Let me check the midpoints: Midpoint of ; midpoint of . Same ⇒ parallelogram. ✓
It's a parallelogram (with equal opposite sides), but unless the diagonals match, not a rectangle. So this example demonstrates a parallelogram (we'd need different points for a strict rectangle).
Example 3. Determine the type of triangle with vertices .
Sides: ; ; .
, right triangle by the converse of Pythagoras.
Example 4. Find the area of the quadrilateral .
Split via diagonal : : . : . Total area .
Example 5. Show that the points form an isoceles right triangle.
. . .
, isoceles.
, right angle at (Pythagoras). ✓
So it's a right isoceles triangle.
Try it yourself
- Classify the triangle with vertices .
- Show form an isoceles triangle.
- Are vertices of a square?
- Show that the points form a right triangle.
- Find the area of the quadrilateral .
- The points , what type of quadrilateral?
- Show that is a rectangle.
- Verify is a square.
- The points are collinear. Find .
- Are vertices of an equilateral triangle?
Pitfalls / Insight
- Order the vertices before applying the parallelogram tests.
- Distance squared is usually easier (no roots).
- Two equal diagonals and equal sides force a square. Don't skip the diagonal check.
Insight. Shape recognition is a small algorithm: compute distances, compare. Be systematic and you'll never lose marks on this kind of question.