What Is The Area Of A Triangle In Coordinate Geometry?
The area of a triangle in coordinate geometry is the amount of flat space a triangle covers when its three corners are given as points $(x_1, y_1)$, $(x_2, y_2)$, and $(x_3, y_3)$ on the coordinate plane. Instead of measuring a base and a perpendicular height, you compute the area straight from those six numbers using one formula. The result is always a positive value, expressed in square units.
This matters because in most real problems you know where the corners sit, not how tall the triangle is. The coordinate approach turns a measuring job into an arithmetic one. It sits inside the wider subject of coordinate geometry, where every shape is described by the coordinates of its points.
For an Example : Surveyors mapping a plot of land never measure the height of a triangle directly; they read three corner coordinates off a GPS and let the formula do the rest.
The Area Formula And What Each Term Means
For a triangle with vertices $A(x_1, y_1)$, $B(x_2, y_2)$, and $C(x_3, y_3)$, the area is:
$$\text{Area} = \frac{1}{2}\left| x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2) \right|$$
Reading the formula piece by piece:
Each $x$-coordinate is multiplied by the difference of the other two vertices' $y$-coordinates.
The three products are added together.
The two vertical bars $|\ \cdots\ |$ mean absolute value - they strip any minus sign, because an area cannot be negative.
The $\frac{1}{2}$ scales the result down, exactly as in the familiar $\frac{1}{2} \times \text{base} \times \text{height}$.
There is a tidy way to remember the pattern: cycle the vertices $1 \to 2 \to 3 \to 1$. The first $x$ takes $(y_2 - y_3)$, the second takes $(y_3 - y_1)$, the third takes $(y_1 - y_2)$ - always "next minus previous."
The Determinant Form
The same formula can be written as a $3 \times 3$ determinant (a single number squeezed out of a square grid of values):
$$\text{Area} = \frac{1}{2}\left| \det \begin{bmatrix} x_1 & y_1 & 1 \ x_2 & y_2 & 1 \ x_3 & y_3 & 1 \end{bmatrix} \right|$$
Expanding this determinant along the last column reproduces the shoelace expression above, so the two forms are identical - pick whichever you find easier to recall.
Where The Formula Comes From, "The Shape Hidden In A Box"
The shoelace formula is not something to memorise blindly; it drops out of a picture. Drop a vertical line from each vertex down to the x-axis. This turns the triangle into the difference of trapeziums (four-sided shapes with one pair of parallel sides).
The area under a side joining $(x_a, y_a)$ to $(x_b, y_b)$ is the trapezium $\frac{1}{2}(y_a + y_b)(x_b - x_a)$. Add the signed areas under all three sides going around the triangle, and the overlapping pieces cancel, leaving exactly $\frac{1}{2}\left| x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2) \right|$. This is the same idea that powers the distance formula and the general area of a polygon.
The name "shoelace" comes from how you compute it by hand: write the coordinates in a column, then cross-multiply down and up like lacing a shoe. The technique scales straight up to any number of sides, which is why it also gives the area of polygons. For the formal statement and its history, see the Shoelace formula article on Wikipedia.
Examples Of Area Of A Triangle In Coordinate Geometry
Each example below builds from a direct substitution to a fuller reasoning task. Problem statements are in bold; the working is not.
Example 1
Find the area of the triangle with vertices $A(1, 1)$, $B(4, 1)$, and $C(1, 5)$.
Substitute $(x_1, y_1) = (1, 1)$, $(x_2, y_2) = (4, 1)$, $(x_3, y_3) = (1, 5)$:
$$\text{Area} = \frac{1}{2}\left| 1(1 - 5) + 4(5 - 1) + 1(1 - 1) \right|$$ $$= \frac{1}{2}\left| -4 + 16 + 0 \right|$$ $$= \frac{1}{2}(12) = 6 \text{ square units}$$
This is a right triangle with legs 3 and 4, so $\frac{1}{2}(3)(4) = 6$ confirms the answer.
Example 2
Find the area of the triangle with vertices $A(3, 4)$, $B(4, 7)$, and $C(6, -3)$.
Substitute in order:
$$\text{Area} = \frac{1}{2}\left| 3(7 - (-3)) + 4((-3) - 4) + 6(4 - 7) \right|$$ $$= \frac{1}{2}\left| 3(10) + 4(-7) + 6(-3) \right|$$ $$= \frac{1}{2}\left| 30 - 28 - 18 \right|$$ $$= \frac{1}{2}\left| -16 \right| = \frac{1}{2}(16) = 8 \text{ square units}$$
The intermediate sum was $-16$, and the absolute value made it $16$. That negative sign is not an error, it only records the order the corners were listed.
Example 3: The tempting shortcut that misfires
A student finds the area of the triangle $P(2, 3)$, $Q(5, 3)$, $R(8, 3)$ and reports the answer without checking anything.
They substitute and get:
$$\text{Area} = \frac{1}{2}\left| 2(3 - 3) + 5(3 - 3) + 8(3 - 3) \right| = \frac{1}{2}(0) = 0$$
The intuitive reaction is to think the arithmetic broke, so many rewrite the numbers hunting for a "real" answer. But zero is the answer, and it is telling you something. All three points have $y = 3$, so they sit on one horizontal line. Three points on a line enclose no space at all.
A zero area means the three points are collinear, not that the calculation failed. The rescue is to trust the formula: when it returns zero, stop and read it as "these points do not form a triangle."
Example 4
Verify whether $A(1, 5)$, $B(2, 3)$, and $C(-2, -11)$ are collinear.
Apply the formula and test for zero:
$$\text{Area} = \frac{1}{2}\left| 1(3 - (-11)) + 2((-11) - 5) + (-2)(5 - 3) \right|$$ $$= \frac{1}{2}\left| 1(14) + 2(-16) + (-2)(2) \right|$$ $$= \frac{1}{2}\left| 14 - 32 - 4 \right| = \frac{1}{2}\left| -22 \right| = 11 \text{ square units}$$
The area is $11$, not $0$, so the three points are not collinear - they form a genuine triangle.
Example 5
The vertices of a triangle are $A(0, 0)$, $B(a, 0)$, and $C(0, b)$. Find its area in terms of $a$ and $b$.
With one vertex at the origin the arithmetic is short:
$$\text{Area} = \frac{1}{2}\left| 0(0 - b) + a(b - 0) + 0(0 - 0) \right|$$ $$= \frac{1}{2}\left| ab \right| = \frac{1}{2}ab \text{ square units}$$
This recovers the standard right-triangle result: legs of length $a$ and $b$ give area $\frac{1}{2}ab$.
Example 6
A triangular park has corners recorded by survey as $A(2, 1)$, $B(7, 2)$, and $C(4, 6)$, in kilometres. Find its area.
Substitute the surveyed coordinates:
$$\text{Area} = \frac{1}{2}\left| 2(2 - 6) + 7(6 - 1) + 4(1 - 2) \right|$$ $$= \frac{1}{2}\left| 2(-4) + 7(5) + 4(-1) \right|$$ $$= \frac{1}{2}\left| -8 + 35 - 4 \right| = \frac{1}{2}(23) = 11.5 \text{ km}^2$$
No height was ever measured - the three GPS corners were enough.
Where the Formula Earns Its Keep
The coordinate area formula is the working tool wherever a shape is known by its corners rather than its measurements.
Land surveying. A surveyor records boundary corners as coordinates and computes a plot's area with the shoelace method — no tape stretched across the diagonal. Whole parcels of irregular land are measured this way.
Computer graphics. Every 3D model is a mesh of triangles. To shade, texture, or detect a click inside a triangle, software computes triangle areas from vertex coordinates thousands of times per frame.
Navigation and GIS. Mapping software layers polygons over the world; the area of each region — a lake, a district, a field — comes from the coordinates of its boundary points.
The deeper "why" is that coordinates turn geometry into arithmetic. Once a corner is a pair of numbers, area becomes something a machine can compute without ever picking up a ruler. For a fuller treatment of how coordinates encode shapes, see Wolfram MathWorld's entry on the triangle area.
The Mistakes Students Make Most Often
Mistake 1: Dropping the absolute value
Where it slips in: After summing the three products, the running total is negative, so the reported "area" comes out negative.
Don't do this: Write $\text{Area} = -8 \text{ units}^2$ because the bracket evaluated to $-16$.
The correct way: Apply the absolute value bars before the final answer. The sign only records whether the vertices were listed clockwise or anticlockwise; the area itself is $|-8| = 8$. Area is never negative.
Mistake 2: Forgetting the one-half
Where it slips in: The memoriser recalls the $x(y - y)$ pattern but leaves off the $\frac{1}{2}$ in front, doubling every answer.
Don't do this: Report $16$ square units for a triangle whose true area is $8$.
The correct way: The $\frac{1}{2}$ is part of the formula, not optional decoration - it is the same $\frac{1}{2}$ from $\frac{1}{2} \times \text{base} \times \text{height}$. Always halve the bracketed total.
Mistake 3: Scrambling the vertex order
Where it slips in: The second-guesser pairs $x_1$ with the wrong $y$-difference, breaking the $1 \to 2 \to 3$ cycle.
Don't do this: Compute $x_1(y_1 - y_2)$ or mix the subscripts at random.
The correct way: Keep the cyclic pattern strict: $x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)$. Each $x$ takes the other two $y$-values, "next minus previous." Writing the three points in a neat column first prevents the mix-up.
Conclusion
The area of a triangle in coordinate geometry is $\frac{1}{2}\left| x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2) \right|$.
The absolute value keeps the area positive; the sign inside only encodes vertex order.
A result of zero proves the three points are collinear.
The formula comes from trapeziums under the triangle's sides and generalises to any polygon (the shoelace method).
The determinant form is the same formula in different notation.
To take the area of a triangle in coordinate geometry further with a teacher, explore Bhanzu's geometry tutor, a high school math tutor for the determinant proof, or browse math classes online. Want structured practice with a live trainer? Try a free class.
A Practical Next Step
Work through these problems to solidify your understanding, then check each answer against the collinearity test.
Find the area of the triangle with vertices $(0, 0)$, $(6, 0)$, $(0, 8)$. (Answer to Question 1: $24$ square units.)
Determine whether $(1, 2)$, $(3, 6)$, $(5, 10)$ are collinear. (Answer to Question 2: area $= 0$, so yes, collinear.)
Find the area of the triangle $(-2, 3)$, $(4, -1)$, $(1, 5)$. (Answer to Question 3: $13$ square units.)
Read More
Coordinate Plane — the grid on which every vertex is plotted.
Euclidean Distance Formula — measure the straight-line length between plotted points.
Distance of a Point From a Line — the companion coordinate-distance tool.
Points and Lines — the building blocks of coordinate geometry.
Was this article helpful?
Your feedback helps us write better content
