by Guest » Thu Oct 29, 2015 4:10 pm
Let the coordinates of the vertices of the triangle be [tex](x_1,y_1), (x_2,y_2), (x_3,y_3)[/tex].
The coordinates of the midpoint of any pair of vertices is simply the average of the values of the [tex]x[/tex] and [tex]y[/tex] values.
So the coordinates of the three midpoints are
[tex]\left(\frac{x_1+x_2}{2}, \frac{y_1+y_2}{2}\right)[/tex], [tex]\left(\frac{x_1+x_3}{2}, \frac{y_1+y_3}{2}\right)[/tex], [tex]\left(\frac{x_2+x_3}{2}, \frac{y_2+y_3}{2}\right)[/tex],
this must match (-1,4), (5,2), (2,-1) (the order doesn't matter it will ultimately just permute the order of the vertices).
This gives us 3 sets of equations involving [tex]x_1,x_2,x_3[/tex] and 3 sets of equations involving [tex]y_1,y_2,y_3[/tex]:
[tex]\frac{x_1+x_2}{2} = -1[/tex]
[tex]\frac{x_1+x_3}{2} = 5[/tex]
[tex]\frac{x_2+x_3}{2} = 2[/tex]
[tex]\frac{y_1+y_2}{2} = 4[/tex]
[tex]\frac{y_1+y_3}{2} = 2[/tex]
[tex]\frac{y_2+y_3}{2} = -1[/tex]
Solving the equations involving [tex]x[/tex] can be done as follows:
Take the first equation, rearrange it to get
[tex]x_1=-2-x_2[/tex]
Substitute it into the second equation to get
[tex]\frac{-2-x_2+x_3}{2} = 5[/tex]
rearrange it to get
[tex]x_2 = x_3-12[/tex]
Substitute it into the third equation to get
[tex]\frac{x_3-12+x_3}{2} = 2[/tex]
which simplifies to [tex]x_3=8[/tex],
which means [tex]x_2=x_3-12=8-12=-4[/tex]
and [tex]x_1=-2-x_2=-2--4=2[/tex].
Similarly we can solve the other 3 equations to get [tex]y_1=7[/tex], [tex]y_2=1[/tex], [tex]y_3=-3[/tex].
So the coordinates of the vertices of the triangle are [tex](2,7), (-4,1), (8,-3)[/tex].
Hope this helped,
R. Baber.