Respuesta :
One way of solving this problem can be Heron's formula. It is a formula that allows us to compute the area of a triangle, knowing the length of its three sides.
For the sake of clarity, let's assume that the point in the top-left lies in the origin, and let's call it point A. Then, the "middle" point is point B, and the bottom-right point is point C.
If we fix the coordinate axis with the origin in A, we have the following coordinates for the three points:
[tex] A = (0,0),\quad B = (4,-1),\quad C = (7,-5) [/tex]
We can compute the length of any side using the formula for the distance between two points:
[tex] d(P,Q) = \sqrt{(P_x-Q_x)^2 + (P_y-Q_y)^2} [/tex]
Plugging the approriate values, we get the following lenghts:
[tex] \overline{AB} = \sqrt{17},\quad \overline{BC} = 5,\quad \overline{AC} = \sqrt{74} [/tex]
Now that we have the lengths, we can use Heron's formula: given the side lenghts [tex] a,b,\text{ and } c [/tex] and the semiperimeter [tex] p [/tex], the area is given by
[tex] A = \sqrt{p(p-a)(p-b)(p-c)} [/tex]
If you plug our values, you will get an area of 6.5. So, unless I'm mistaken, none of the answers seem to mach, whereas 7 seems the best approximation.