Area of triangle with vertices (x₁,y₁), (x₂,y₂), (x₃,y₃).
Derivation
Let the vertices be A(x1,y1), B(x2,y2), C(x3,y3).
Translate so A is at the origin: B′=(x2−x1,y2−y1) and C′=(x3−x1,y3−y1).
The area of the triangle OB′C′ is half the magnitude of the cross product of OB′ and OC′:
Δ=21∣(x2−x1)(y3−y1)−(x3−x1)(y2−y1)∣
Expanding:
Δ=21∣x1(y2−y3)+x2(y3−y1)+x3(y1−y2)∣
This is exactly the expansion of:
Δ=21x1x2x3y1y2y3111
The signed version (without absolute value) is positive when the vertices are ordered anticlockwise and negative when clockwise. This sign convention is useful in problems involving orientation.
Key Idea
Vector form. The formula above is already the vector derivation made explicit. Writing it cleanly:
>
> $$
> \Delta = \frac{1}{2}\,|\overrightarrow{AB} \times \overrightarrow{AC}|
> $$
>
> where $\times$ is the 2D cross product (scalar z-component). This is the direct definition of area via the parallelogram law — the triangle is half the parallelogram spanned by $\overrightarrow{AB}$ and $\overrightarrow{AC}$.
>
> In 3D, for a triangle with vertices in space, the same formula holds with the full 3D cross product giving a vector whose magnitude is twice the area:
>
> $$
> \Delta = \frac{1}{2}\,|\overrightarrow{AB} \times \overrightarrow{AC}|
> $$
>
> The determinant form is simply the coordinate expansion of this cross product.