Size of a triangle using determinant

87 Views Asked by At

find the size of a triangle using (determinant) with the following points:
$(x_1,y_1)=(1,-2)$
$(x_2,y_2)=(-4,-2)$
$(x_3,y_3)=(-5,-1)$

How should I place those points in the determinant? or firstly in a matrix?

2

There are 2 best solutions below

0
On

The determinant of two vectors is the area of the parallelogram spanned by them.

If you could arrange the above triangle to be at the origin, then the determinant of the two vectors centered at the origin would be twice the area of the triangle.

0
On

I woulad say:

$A=\frac{1}{2}abs\left(\begin{vmatrix} x_{1} & y_{1}& 1\\ x_{2} & y_{2}& 1\\ x_{3} & y_{3}& 1 \end{vmatrix}\right)$