[Math] How to find area of triangle using normal vector

vectors

I am trying to figure out the area of the triangle in the image provided.

Triangle

I understood why they took the magnitude of the normal vector as it gives the length of the height of the triangle. However, what I do not understand is why they only multiplied it by 1/2 instead of multiplying by the length of V and then times 1/2 (baseheight.5)? Any help I would appreciate. Thank you!

Best Answer

The reason this works is because the magnitude of the cross product of any two vectors $\vec{a}$ and $\vec{b}$ is $|a||b|\sin\theta$. Of course, the direction is along a unit vector that's normal to both those vectors, but that's irrelevant here. What matters is the magnitude.

The area of a plane triangle with two sides $a$ and $b$ is $\frac 12 ab \sin \theta$, where $\theta$ is the angle between those sides. Showing this is easy: if $a$ is taken as the base, the height is $b\sin\theta$ whereas if $b$ is taken as the base, the height is $a \sin\theta$.

I hope the relationship becomes obvious now.