Determinants: Diagram-Based Questions (1)

easy 2 min read

Question

Find the area of a triangle with vertices A(1,2)A(1, 2), B(4,6)B(4, 6), and C(7,2)C(7, 2) using determinants. Then verify by an independent method.

Solution — Step by Step

The signed area is

Area=12x1y11x2y21x3y31\text{Area} = \frac{1}{2}\left|\begin{vmatrix} x_1 & y_1 & 1 \\ x_2 & y_2 & 1 \\ x_3 & y_3 & 1 \end{vmatrix}\right|
Area=12121461721\text{Area} = \frac{1}{2}\left|\begin{vmatrix} 1 & 2 & 1 \\ 4 & 6 & 1 \\ 7 & 2 & 1 \end{vmatrix}\right| =1(6112)2(4117)+1(4267)= 1\cdot(6 \cdot 1 - 1 \cdot 2) - 2\cdot(4 \cdot 1 - 1 \cdot 7) + 1\cdot(4 \cdot 2 - 6 \cdot 7) =1(4)2(3)+1(34)=4+634=24= 1(4) - 2(-3) + 1(-34) = 4 + 6 - 34 = -24 Area=1224=12 square units\text{Area} = \frac{1}{2}|-24| = 12 \text{ square units}

Base ACAC runs from (1,2)(1, 2) to (7,2)(7, 2) along y=2y = 2, so length =6= 6. Height is the perpendicular distance from B(4,6)B(4, 6) to the line y=2y = 2, which is 62=46 - 2 = 4.

Area=12×6×4=12\text{Area} = \frac{1}{2} \times 6 \times 4 = 12

Matches. ✓

Area =12= 12 square units.

Why This Works

The determinant formula encodes the cross product of two side vectors. For vectors AB\vec{AB} and AC\vec{AC}, the magnitude of AB×AC\vec{AB} \times \vec{AC} equals twice the triangle’s area. The 3×3 determinant with the column of 11s is just a tidy way to compute this in 2D.

If the determinant is zero, the three points are collinear — a useful collinearity test.

Alternative Method

Shoelace (Gauss) formula: Area=12x1(y2y3)+x2(y3y1)+x3(y1y2)\text{Area} = \frac{1}{2}|x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)|. Plug in: 121(4)+4(0)+7(4)=12428=12\frac{1}{2}|1(4) + 4(0) + 7(-4)| = \frac{1}{2}|4 - 28| = 12. Same result, often faster for coordinate geometry MCQs.

Common Mistake

Forgetting the absolute value and the factor of 1/21/2. Some students report the determinant value 24-24 as the area. The signed determinant tells us orientation; the area is always positive and equals half the magnitude.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next