The distance calculator helps you to find the distance between two points on a 2D coordinate plane. Enter the coordinates of the two-point and get the distance between them, and learn how to calculate the distance between the two coordinates points.
Formula:
X1, Y1 = Coordinates of the first point
X2, Y2 = Coordinates of the second point
Distance = √(X2 - X1)2 + (Y2 - Y1)2
Example:
First point at Coordinates of X1 = 10 , Y1 = 20
Second point at Coordinates of X2 = 60 , Y2 = -30
Distance = √(X2 - X1)2 + (Y2 - Y1)2 = √(60 - 10)2 + (-30 - 20)2 = √2500 + 2500 = √5000 = 70.71