Revised Coordinated Polygons I

Geometry Level 2

Quadrilateral A B C D ABCD has vertices A = ( 4 , 1 ) , B = ( 1 , 3 ) , C = ( 3 , 5 ) , A=(-4, -1), B=(1, -3), C=(3, 5), and D = ( 2 , 3 ) . D=(-2, 3). Find its area.


The answer is 30.

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.

3 solutions

Chris Lewis
Jul 18, 2019

This is easy to work out with the shoelace formula . We get

A = [ ( 4 ) × ( 3 ) + 1 × 5 + 3 × 3 + ( 2 ) × ( 1 ) ] [ 1 × ( 1 ) + 3 × ( 3 ) + ( 2 ) × 5 + ( 4 ) × 3 ] 2 = 28 ( 32 ) 2 = 60 2 = 30 A=\frac{[(-4) \times (-3) + 1 \times 5 + 3 \times 3 + (-2) \times (-1)]-[1 \times (-1) + 3 \times (-3) + (-2) \times 5 + (-4) \times 3]}{2}=\frac{28-(-32)}{2}=\frac{60}{2}=\boxed{30}

Steven Chase
Jul 17, 2019

Calculate the area of the two triangles using the cross product formula:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import math

x1 = -4.0
y1 = -1.0

x2 = 1.0
y2 = -3.0

x3 = 3.0
y3 = 5.0

x4 = -2.0
y4 = 3.0

A = 0.0

#######################

v1x = x4 - x1
v1y = y4 - y1

v2x = x2 - x1
v2y = y2 - y1

cross = v1x*v2y - v1y*v2x

A = A + 0.5*math.fabs(cross)

#######################

v1x = x4 - x3
v1y = y4 - y3

v2x = x2 - x3
v2y = y2 - y3

cross = v1x*v2y - v1y*v2x

A = A + 0.5*math.fabs(cross)

#######################

print A

Wolfram/Alpha: area of polygon with vertices at {-4,-1},{1,-3},{3,5},{-2,3}, the answer is 30

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...