The problem requires calculating the area of a triangular monitoring zone formed by three research stations with given coordinates: P(2,5), Q(8,1), and R(4,9).
The Shoelace Formula provides an efficient method for this calculation.
The formula for the area of a triangle with vertices $(x_1, y_1)$, $(x_2, y_2)$, and $(x_3, y_3)$ is:
$ \text{Area} = \frac{1}{2} |(x_1y_2 + x_2y_3 + x_3y_1) - (y_1x_2 + y_2x_3 + y_3x_1)| $Identify the coordinates:
$ (2 \times 1) + (8 \times 9) + (4 \times 5) = 2 + 72 + 20 = 94 $
$ (5 \times 8) + (1 \times 4) + (9 \times 2) = 40 + 4 + 18 = 62 $
$ \text{Area} = \frac{1}{2} |(\text{Sum Downward}) - (\text{Sum Upward})| $
$ \text{Area} = \frac{1}{2} |94 - 62| = \frac{1}{2} |32| = 16 $
The area of the triangular monitoring zone is 16 square kilometers.
Find the co-ordinates of the centroid of a triangle whose vertices are A(1, 4), B(7, 8) and C(10, 12).