Where $a = ( 1, 2, 3), b = (2, 1, 3) $, and $c = (3,1,2). $
2026-03-29 21:02:46.1774818166
On
On
How to calculate the area of a triangle ABC when given three position vectors $a, b$, and $ c$ in 3D?
110k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
5
There are 5 best solutions below
0
On
Solution: Construct the vectors $\hat{ab}$, $\hat{ac}$ and take $\frac{1}{2} |\hat{ab} \times \hat{ac}|$. We take half of the resulting since the original gives the area of the parallelogram decsribed by the vectors.
0
On
use this formula: $$S=\sqrt{p(p-s_1)(p-s_2)(p-s_3)}$$ where $p=\frac{s_1+s_2+s_3}{2}$, and $s_1,s_2,s_3$ are the lengths of the three sides. You can get $s_1,s_2,s_3$ from the three positions.
Heron works of course but it would be simpler to take half the length of the cross product $(b-a)\times(c-a)$.