Draw a quadrilateral in the Cartesian plane, whose vertices are (–4, 5), (0, 7), (5, –5) and (–4, –2). Also, find its area.
Concept Used
The area of a polygon with given vertices can be computed using the Shoelace Formula, which is derived from coordinate geometry. It works efficiently for any polygon whose vertices are known in order.
\[ \text{Area} = \frac{1}{2} \left| \sum x_i y_{i+1} - \sum y_i x_{i+1} \right| \]
Solution Roadmap
- Plot the given points on the Cartesian plane
- Join them in order to form the quadrilateral
- Apply Shoelace Formula using cyclic arrangement
- Compute determinant-style expression carefully
Solution
Let the vertices be taken in order: \(A(-4,5), B(0,7), C(5,-5), D(-4,-2)\).
Using the Shoelace Formula:
\[ \text{Area} = \frac{1}{2} \left| (-4 \cdot 7 + 0 \cdot -5 + 5 \cdot -2 + (-4)\cdot 5) - (5 \cdot 0 + 7 \cdot 5 + (-5)\cdot (-4) + (-2)\cdot (-4)) \right| \]
\[ = \frac{1}{2} \left| (-28 + 0 -10 -20) - (0 + 35 + 20 + 8) \right| \]
\[ = \frac{1}{2} \left| -58 - 63 \right| = \frac{1}{2} \times 121 = 60.5 \]
Hence, the area of the quadrilateral is \(60.5\) square units.
Exam Significance
- Direct application of Shoelace Formula — frequently asked in CBSE boards
- Important for coordinate geometry section in JEE Main & NDA
- Tests accuracy in cyclic ordering and sign handling
- Often combined with plotting-based MCQs in competitive exams