[Math] Find area of parallelogram with matrix vertices

matrices

Let ${v} = \begin{pmatrix} 5 \\ -3 \end{pmatrix}$ and ${w} = \begin{pmatrix} 11 \\ -2 \end{pmatrix}$. Find the area of the parallelogram with vertices ${0}$, ${v}$, ${w}$, and $v + {w}$.

What is the best way to start this?

Thanks

Best Answer

Just use determinant formula - | u x w |.

det(5,-3) x det(11,-2) 

=(5 x -2) - (11 x -3)

=23

P.S. - I am sorry I am new to Maths SE so doesn't know how to edit this stuff. But , I try to help if I can.