What Is the Area of a Triangle in Determinant Form?
The area of a triangle in determinant form is a way to compute a triangle's area directly from the coordinates of its three vertices, arranged as the rows of a $3\times 3$ determinant. For a triangle with vertices $A(x_1, y_1)$, $B(x_2, y_2)$, and $C(x_3, y_3)$:
$$\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|$$
A determinant is a single number computed from a square array of numbers; here it measures the signed area spanned by the vertices. This is the same result as the standard coordinate formula taught under area of triangle in coordinate geometry, but written as a determinant so it plugs directly into matrix methods. The determinant machinery itself is developed under the determinant of matrix.
Why Package a Triangle's Area Inside a Determinant?
Give me the three corners of a triangle, and one determinant returns its exact area.
There is no need to find a base, drop a perpendicular height, or measure an angle. Once the three vertices are written as coordinates, a single $3\times 3$ determinant captures the whole computation, and the same machine that computes it also tells you, for free, whether the three points even form a triangle at all. That compactness is why coordinate geometry and linear algebra both lean on this one formula.
What Is the Formula and What Does Each Symbol Mean?
The formula has three moving parts - the determinant, the factor $\frac{1}{2}$, and the absolute value. Each does a specific job.
$x_1, y_1$ / $x_2, y_2$ / $x_3, y_3$ - the coordinates of the three vertices $A$, $B$, $C$, one vertex per row.
The column of $1$s - the third column is always $1$; it lets a $3\times 3$ determinant encode a 2D area (it comes from writing each point in homogeneous form).
$\det[\cdots]$ - the determinant of the array; this equals twice the signed area of the triangle.
$\frac{1}{2}$ - halves that value, because the determinant gives the area of the parallelogram spanned by two edge vectors, and the triangle is half of it.
$\left| ; \right|$ - the absolute value; area can never be negative, so the sign of the determinant (which records vertex orientation) is dropped.
Expanding the determinant along the third column gives the equivalent expanded form:
$$\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|$$
Both forms give the same number; the determinant form is easier to remember, the expanded form is easier to plug numbers into.
How Do You Derive the Determinant Formula?
The formula comes from viewing two sides of the triangle as vectors and taking half of the parallelogram they span.
Step 1. Place vertex $A$ at the origin of reference. The two edge vectors from $A$ are
$$\vec{AB} = (x_2 - x_1,; y_2 - y_1), \qquad \vec{AC} = (x_3 - x_1,; y_3 - y_1).$$
Step 2. The area of the parallelogram spanned by $\vec{AB}$ and $\vec{AC}$ equals the absolute value of the $2\times 2$ determinant of their components:
$$\text{Parallelogram} = \left| \det\begin{bmatrix} x_2 - x_1 & y_2 - y_1 \ x_3 - x_1 & y_3 - y_1 \end{bmatrix} \right|$$
Step 3. A triangle is half the parallelogram, so multiply by $\frac{1}{2}$.
Step 4. Expanding that $2\times 2$ determinant and re-collecting terms reproduces exactly the $3\times 3$ form with the column of $1$s. That is why the two formulas agree.
How Do You Expand a 3×3 Determinant?
Expand the $3\times 3$ determinant along the third column (the column of $1$s), because multiplying by $1$ keeps the arithmetic light. For
$$\det\begin{bmatrix} x_1 & y_1 & 1 \ x_2 & y_2 & 1 \ x_3 & y_3 & 1 \end{bmatrix},$$
the expansion is:
$$x_1(y_2 - y_3) - y_1(x_2 - x_3) + 1(x_2 y_3 - x_3 y_2)$$
Regrouping this gives $x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)$, which is the expanded area expression above. If you prefer, the same result follows from Sarrus' rule, but cofactor expansion along the column of $1$s is the cleaner route here.
How Does the Determinant Detect Collinear Points?
If the determinant equals zero, the three points are collinear - they lie on one straight line and enclose no area. This is the most useful side effect of the formula: a triangle with zero area is not a triangle at all.
$$\det\begin{bmatrix} x_1 & y_1 & 1 \ x_2 & y_2 & 1 \ x_3 & y_3 & 1 \end{bmatrix} = 0 \iff A,, B,, C \text{ are collinear}$$
So the same determinant serves two purposes: a nonzero value gives the area, and a zero value is the collinear points test. This is why the determinant form is preferred whenever you need to check whether three plotted points form a genuine triangle.
Where Is the Determinant Area Formula Used?
The formula shows up wherever coordinates replace rulers.
Coordinate geometry problems. Finding areas of triangles and polygons from plotted vertices without construction.
The shoelace / surveyor's formula. Land surveyors compute plot areas from boundary corner coordinates; the triangle determinant is the building block of that method.
Computer graphics. Rendering engines test which side of an edge a pixel lies on using the sign of this determinant.
Linear algebra. It is a concrete first meeting with determinants as signed area - the bridge into the wider theory of determinants and matrices.
Examples of the Area of a Triangle in Determinant Form
Example 1
Find the area of the triangle with vertices $A(1, 1)$, $B(4, 1)$, and $C(1, 5)$.
Use the expanded form:
$$\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$$
Final answer: the area is $6$ square units.
Example 2
Find the area of the triangle with vertices $A(2, 3)$, $B(4, 7)$, and $C(6, 11)$.
Wrong path. A student plugs the coordinates in, gets a determinant of $0$, and writes "area $= 0$, so the triangle is very thin."
Why it breaks. A "very thin triangle" still has a small positive area. A determinant of exactly $0$ means something stronger: the three points lie on one straight line, so there is no triangle at all.
The rescue. Check the collinearity claim. From $A$ to $B$ the change is $(2, 4)$; from $B$ to $C$ it is also $(2, 4)$. Equal direction vectors confirm the points are collinear.
$$\text{Area} = \frac{1}{2}\left| 2(7 - 11) + 4(11 - 3) + 6(3 - 7) \right| = \frac{1}{2}\left| -8 + 32 - 24 \right| = 0$$
Final answer: the area is $0$; the points are collinear, so they do not form a triangle.
Example 3
Find the area of the triangle with vertices $A(0, 0)$, $B(5, 0)$, and $C(0, 8)$.
With one vertex at the origin the arithmetic is quick:
$$\text{Area} = \frac{1}{2}\left| 0(0 - 8) + 5(8 - 0) + 0(0 - 0) \right| = \frac{1}{2}(40) = 20$$
Final answer: the area is $20$ square units.
Example 4
A triangle has vertices $A(-2, 3)$, $B(4, -1)$, and $C(1, 5)$. Find its area.
$$\text{Area} = \frac{1}{2}\left| -2(-1 - 5) + 4(5 - 3) + 1(3 - (-1)) \right|$$
$$= \frac{1}{2}\left| 12 + 8 + 4 \right| = \frac{1}{2}(24) = 12$$
Final answer: the area is $12$ square units.
Example 5
For what value of $k$ are the points $A(1, 2)$, $B(3, 4)$, and $C(5, k)$ collinear?
Set the determinant to $0$:
$$1(4 - k) + 3(k - 2) + 5(2 - 4) = 0$$
$$4 - k + 3k - 6 - 10 = 0 \implies 2k - 12 = 0 \implies k = 6$$
Final answer: $k = 6$ makes the three points collinear.
Example 6
Find the area of the triangle with vertices $A(1.5,, 2)$, $B(4,, 3.5)$, and $C(2,, 6)$.
$$\text{Area} = \frac{1}{2}\left| 1.5(3.5 - 6) + 4(6 - 2) + 2(2 - 3.5) \right|$$
$$= \frac{1}{2}\left| -3.75 + 16 - 3 \right| = \frac{1}{2}(9.25) = 4.625$$
Final answer: the area is $4.625$ square units.
Where Do Students Trip Up on the Determinant Area Formula?
The most common misstep is dropping the absolute value and reporting a negative area when the vertices happen to be listed clockwise. Naming the sign as an orientation record - not part of the area - keeps the answer honest.
Mistake 1: Forgetting the absolute value
Where it slips in: When the vertices are listed clockwise, the raw determinant comes out negative.
Don't do this: Reporting the area as, say, $-6$ square units.
The correct way: Take the absolute value; area is always non-negative. The negative sign only tells you the vertices were listed in clockwise order, which is orientation information, not size.
Mistake 2: Forgetting the factor of one-half
Where it slips in: Right after computing the determinant.
Don't do this: Reporting the determinant itself as the area.
The correct way: The determinant equals twice the area, because it measures the parallelogram spanned by two edges. Halve it. The learner who rushes straight from the determinant to the answer reliably reports double the true area.
Mistake 3: Reading a zero determinant as a degenerate answer
Where it slips in: When three near-aligned points give a determinant of exactly $0$.
Don't do this: Writing "area is zero, so it is a tiny triangle."
The correct way: A zero determinant means the points are exactly collinear and enclose no area - there is no triangle.
Conclusion
The area of a triangle in determinant form is $\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|$, built from the three vertex coordinates.
The $\frac{1}{2}$ appears because the determinant gives the spanning parallelogram's area, and a triangle is half of it.
The absolute value drops the orientation sign so area stays non-negative.
Expanding along the column of $1$s gives $x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)$.
A determinant of zero means the three points are collinear and form no triangle.
To master coordinate geometry with a teacher, explore Bhanzu's geometry tutor or high school math tutor sessions, or browse math classes online for structured practice.
Read More
Practice These to Solidify Your Understanding
Work through these problems in order:
Find the area of the triangle with vertices $A(0, 0)$, $B(6, 0)$, $C(0, 4)$.
Show whether $A(1, 1)$, $B(2, 3)$, $C(3, 5)$ are collinear.
Find $k$ so that $A(2, -2)$, $B(4, k)$, $C(6, 2)$ are collinear.
Answer to Question 1: $\frac{1}{2}\left|0(0-4) + 6(4-0) + 0(0-0)\right| = \frac{1}{2}(24) = 12$ square units. Answer to Question 2: $\frac{1}{2}\left|1(3-5) + 2(5-1) + 3(1-3)\right| = \frac{1}{2}\left|-2 + 8 - 6\right| = 0$, so they are collinear. Answer to Question 3: $2(k-2) + 4(2-(-2)) + 6(-2-k) = 0 \implies 2k - 4 + 16 - 12 - 6k = 0 \implies -4k = 0 \implies k = 0$.
Want a live Bhanzu trainer to work through determinant and coordinate-geometry problems with you? Book a free demo class.
Was this article helpful?
Your feedback helps us write better content
