Calculate the sum of the x-axis coordinates of the two points. For example, if the two points are (x1,y1) and (x2,y2), calculate x2+x1.
Calculate the sum of the y-axis coordinates of the two points. For example, if the two points are (x1,y1) and (x2,y2), calculate y2+y1.
Divide the result from Step 1 by 2 to get the x-axis value of the midpoint. Divide the result from Step 2 by 2 to get the y-axis value of the midpoint. For example, the midpoint would be ((x2+x1)/2, (y2+y1)/2).
Calculate the difference between the x-axis coordinates of the two points. For example, if the two points are (x1,y1) and (x2,y2), calculate x2-x1.
Calculate the difference between the y-axis coordinates of the two points. For example, if the two points are (x1,y1) and (x2,y2), calculate y2-y1.
Sum the square of the value from Step 1 and the square of the value from Step 2. This value would be ((x2-x1)^2 + (y2-y1)^2).
Take the square root of the value from Step 3. This is the distance between the two points. In this example, the final equation would be sqrt((x2-x1)^2 + (y2-y1)^2).