document.write( "Question 389064: What is the distance between points (5,-3) and (0,9) in a coordinate system?\r
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #275570 by CharlesG2(834) ![]() You can put this solution on YOUR website! What is the distance between points (5,-3) and (0,9) in a coordinate system?\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "distance d = sqrt( (x2 - x1)^2 + (y2 - y1)^2 ) \n" ); document.write( "d = sqrt( (0 - 5)^2 + (9 - -3)^2 ) \n" ); document.write( "d = sqrt( -5^2 + 12^2 ) \n" ); document.write( "d = sqrt( 25 + 144 ) \n" ); document.write( "d = sqrt( 169 ) \n" ); document.write( "d = 13 \n" ); document.write( " \n" ); document.write( " |