Difficulty: Easy
Correct Answer: 1
Explanation:
Introduction / Context:The medial triangle (joining midpoints of the sides) has area exactly one quarter of the original triangle’s area, regardless of the triangle’s shape. We will compute △₁ from coordinates and then take a quarter to get △₂.
Given Data / Assumptions:
Concept / Approach:Area(ABC) = (1/2)*|x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂)|. Then △₂ = (1/4)△₁.
Step-by-Step Solution:
1) Using A(0, −1), B(0, 3), C(2, 1):Area △₁ = (1/2)*|0*(3 − 1) + 0*(1 − (−1)) + 2*(−1 − 3)|= (1/2)*|2*(−4)| = (1/2)*8 = 4.2) Medial triangle area △₂ = (1/4)*△₁ = 1.Verification / Alternative check:The midpoint triangle always has sides parallel to the original and each side half the length, making the area one fourth.
Why Other Options Are Wrong:2, 3, 4, 5 do not equal one quarter of 4.
Common Pitfalls:Accepting the inconsistent “△₁ = 1” without recomputation; arithmetic slips in the coordinate formula.
Final Answer:1.
Discussion & Comments