how to find area of polygon when given the coordinates
Answers
Answered by
0
First, number the vertices in order, going either clockwise or counter-clockwise, starting at any vertex.
The area is then given by the formula
area
=
(
x
1
y
2
−
y
1
x
2
)
+
(
x
2
y
3
−
y
2
x
3
)
.....
+
(
x
n
y
1
−
y
n
x
1
)
2
Where x1 is the x coordinate of vertex 1 and yn is the y coordinate of the nth vertex etc. Notice that the in the last term, the expression wraps around back to the first vertex again.
Try it here
Adjust the quadrilateral ABCD by dragging any vertex. The area is calculated using this method as you drag. A detailed explanation follows the diagram.
The above diagram shows how to do this manually.
Make a table with the x,y coordinates of each vertex. Start at any vertex and go around the polygon in either direction. Add the starting vertex again at the end. You should get a table that looks like the leftmost gray box in the figure above.
Combine the first two rows by:
Multiplying the first row x by the second row y. (red)
Multiplying the first row y by the second row x (blue)
Subtract the second product form the first.
Repeat this for rows 2 and 3, then rows 3 and 4 and so on.
Add these results, make it positive if required, and divide by two.
PLZ mark me as a BRAINLIST
The area is then given by the formula
area
=
(
x
1
y
2
−
y
1
x
2
)
+
(
x
2
y
3
−
y
2
x
3
)
.....
+
(
x
n
y
1
−
y
n
x
1
)
2
Where x1 is the x coordinate of vertex 1 and yn is the y coordinate of the nth vertex etc. Notice that the in the last term, the expression wraps around back to the first vertex again.
Try it here
Adjust the quadrilateral ABCD by dragging any vertex. The area is calculated using this method as you drag. A detailed explanation follows the diagram.
The above diagram shows how to do this manually.
Make a table with the x,y coordinates of each vertex. Start at any vertex and go around the polygon in either direction. Add the starting vertex again at the end. You should get a table that looks like the leftmost gray box in the figure above.
Combine the first two rows by:
Multiplying the first row x by the second row y. (red)
Multiplying the first row y by the second row x (blue)
Subtract the second product form the first.
Repeat this for rows 2 and 3, then rows 3 and 4 and so on.
Add these results, make it positive if required, and divide by two.
PLZ mark me as a BRAINLIST
Attachments:
Similar questions