document.write( "Question 20859: Given the coordinates of the midpoints of the sides of a triangle find the coordinates of the vertices of the triangle.\r
\n" );
document.write( "\n" );
document.write( "Midpoint Coordinates:
\n" );
document.write( "L(-2,1)
\n" );
document.write( "M(2,3)
\n" );
document.write( "N(3,-2)\r
\n" );
document.write( "\n" );
document.write( "I know that you can plot the coordinates and then draw in the triangle and find the coordinates of the vertices that way, but I was wondering if there was an easier or mathematical way to go about solving the problem. Thank you for looking this over. \n" );
document.write( "
Algebra.Com's Answer #10004 by venugopalramana(3286)![]() ![]() You can put this solution on YOUR website! Midpoint Coordinates: \n" ); document.write( "L(-2,1) \n" ); document.write( "M(2,3) \n" ); document.write( "N(3,-2) \n" ); document.write( "LET ABC BE THE TRIANGLE WITH COORDINATES OF VERTICES AS A(X1,Y1),B(X2,Y2),C(X3,Y3).LET L,M,N BE THE MIDPOINTS OF AB,BC,CA RESPECTIVELY.AS PER COORDINATE GEOMETRY MIDPOINT'S COORDINATES ARE GIVEN BY THE ARITHMATIC MEAN OF COORINATES OF THE END POINTS..SO.. \n" ); document.write( "L={(X1+X2)/2,(Y1+Y2)/2} \n" ); document.write( "HENCE (X1+X2)/2=-2...OR X1+X2=-2*2=-4 \n" ); document.write( "X1+X2=-4......(1) \n" ); document.write( "SIMILARLY WE GET FROM M AND N \n" ); document.write( "X2+X3=4.........(2) \n" ); document.write( "X3+X1=6...........(3) \n" ); document.write( "ADDING ALL 3 EQNS.1,2,3,WE GET \n" ); document.write( "X1+X2+X2+X3+X3+X1=2(X1+X2+X3)=-4+4+6=6 \n" ); document.write( "X1+X2+X3=3.......(4) \n" ); document.write( "NOW SUBTRACTING EQNS..1,2,AND 3 FROM THIS ,WE GET \n" ); document.write( "X3=7 \n" ); document.write( "X2=-1 \n" ); document.write( "X1=-3 \n" ); document.write( "SIMILARLY YOU CAN FIND Y1,Y2,Y3 WHICH WILL COMPLETE YOUR REQUIREMENT.. \n" ); document.write( " |