Area of Triangle
Given the three vertices A(x₁, y₁), B(x₂, y₂), C(x₃, y₃), the area of the triangle is ½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)|. The absolute value is essential — the bracketed expression can come out negative (it is really a signed determinant) and area is never negative, so always take the magnitude. The single most useful corollary for CAT: if this expression equals zero, the three points are collinear, because a "triangle" of zero area is really three points on one line. That makes the area formula the quickest collinearity test there is — much faster than computing two slopes and comparing. A clean way to set up the computation by hand is the shoelace pattern: write the three points in a column, repeat the first at the bottom, cross-multiply down-right minus down-left, sum, halve and take the modulus. Two practical CAT moves: when one vertex is the origin the formula shrinks to ½|x₁y₂ − x₂y₁|, and when a question gives the area and leaves one coordinate unknown, set the determinant equal to ±2·(area) to get two possible values for that coordinate.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Points, distance and division
| Distance between two points | d = √[(x₂−x₁)² + (y₂−y₁)²] |
|---|---|
| Midpoint of a segment | M = ((x₁+x₂)/2 , (y₁+y₂)/2) |
| Internal section (ratio m:n) | ((m·x₂+n·x₁)/(m+n) , (m·y₂+n·y₁)/(m+n)) |
| External section (ratio m:n) | ((m·x₂−n·x₁)/(m−n) , (m·y₂−n·y₁)/(m−n)) |
| Centroid of a triangle | ((x₁+x₂+x₃)/3 , (y₁+y₂+y₃)/3) |
Lines, slope and area
| Slope of a line | m = (y₂−y₁)/(x₂−x₁) |
|---|---|
| Slope–intercept form | y = mx + c |
| Two-point form | (y−y₁) = [(y₂−y₁)/(x₂−x₁)](x−x₁) |
| Intercept form | x/a + y/b = 1 |
| Parallel / perpendicular | parallel: m₁ = m₂ ; perpendicular: m₁·m₂ = −1 |
| Area of a triangle | ½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)| |