Find the area of the triangle with consecutive vertices ( 1 , 3 ) , ( 6 , 8 ) and ( 9 , 1 ) .
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.
So the vertices are ( 1 , 3 ) , ( 6 , 8 ) and ( 9 , 1 ) .
We can use the shoe lace formula,
A = 2 1 ∣ ∣ x 1 y 2 + x 2 y 3 + x 3 y 1 − x 2 y 1 − x 3 y 2 − x 1 y 3 ∣ ∣ = 2 1 ∣ ∣ 1 ( 8 ) + 6 ( 1 ) + 9 ( 3 ) − 6 ( 3 ) − 9 ( 8 ) − 1 ( 1 ) ∣ ∣ = 2 5
Another method here is to compute for the side lengths using the distance formula , then use the heron's formula or cosine rule or any other method to compute for the area of the triangle.
There is just one typo in your formula (it should be − x 3 y 2 instead of − x 3 y 1 :)
Using the matrix method (determinant, first two columns are x and y pairs, the last column is 1's)
A = 2 1 ∣ ∣ ∣ ∣ ∣ ∣ [ l c r ] 6 9 1 8 1 3 1 1 1 ∣ ∣ ∣ ∣ ∣ ∣ = 2 1 ⋅ 5 0 = 2 5
Problem Loading...
Note Loading...
Set Loading...
Use the cross product formula for triangle area:
P 1 = ( 1 , 3 ) P 2 = ( 6 , 8 ) P 3 = ( 9 , 1 )
Use Point 1 as the reference, and calculate delta vectors:
D 1 2 = ( 5 , 5 ) D 1 3 = ( 8 , − 2 )
The area is half the magnitude of the cross product of the two delta vectors:
A = 2 1 ∣ D 1 2 × D 1 3 ∣ = 2 1 5 0 = 2 5