In the coordinate system, a triangle has vertices at and .
What is the area of the triangle (to 1 decimal place)?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
See @William Whitehouse for a nice solution using Heron's formula. Another easy way to do it is to construct two vectors using the three vertices, and then calculate the triangle area as half the magnitude of the cross product of those two vectors.
v 1 = ( − 4 , − 5 , − 6 ) − ( 1 , 2 , 3 ) = ( − 5 , − 7 , − 9 ) v 2 = ( 7 , 8 , 9 ) − ( 1 , 2 , 3 ) = ( 6 , 6 , 6 ) v 1 × v 2 = ( 1 2 , − 2 4 , 1 2 ) 2 1 ∣ v 1 × v 2 ∣ ≈ 1 4 . 7