document.write( "Question 52343: i have two coordinates in the x axis being(1 and 4) and in the y axis (3 and 2) how do i find the distance between two cordinates? \n" ); document.write( "
Algebra.Com's Answer #34871 by venugopalramana(3286)![]() ![]() You can put this solution on YOUR website! i have two coordinates in the x axis being(1 and 4) and in the y axis (3 and 2) how do i find the distance between two cordinates? \n" ); document.write( "do you mean the points are (1,3)and (4,2)...if so \n" ); document.write( "d= sqrt{(x2-x1)^2+(y2-y1)^2}=sqrt{(4-1)^2+(2-3)^2}=sqrt(9+1)=sqrt(10) \n" ); document.write( " |