document.write( "Question 37054: Find the coordinates of the midpoint of a segment with each pair of endpoints.
\n" );
document.write( "G(10, -8), H(4, -3) \n" );
document.write( "
Algebra.Com's Answer #22791 by jcmtnez(53)![]() ![]() ![]() You can put this solution on YOUR website! lets denote M(x,y) the midpoint\r \n" ); document.write( "\n" ); document.write( "Given two points, the formula to the midpoint is: \r \n" ); document.write( "\n" ); document.write( "M = [(x1+x2)/2,(y1+y2)/2]\r \n" ); document.write( "\n" ); document.write( "The points are G(10, -8) and H(4, -3) \n" ); document.write( "Then\r \n" ); document.write( "\n" ); document.write( "M= [(10+4)/2,(-3+(-8))/2] \n" ); document.write( "M= [(14)/2,(-11)/2]\r \n" ); document.write( "\n" ); document.write( "Finally the coordinate of the midpoint of G and H are:\r \n" ); document.write( "\n" ); document.write( "M= (7, -3.5) \n" ); document.write( " |