Calculate the Euclidean distance between two points in a 2D plane
Learn how to use the Distance Between Two Points Calculator and its working principles
This calculator uses the Euclidean distance formula to calculate the straight-line distance between two points in a 2D plane:
√((x2 - x1)² + (y2 - y1)²)
This formula represents the length of the line segment connecting the two points and is the most common way to measure distance in a Cartesian coordinate system.
For example, if you have two points:
The distance between them would be calculated as:
√((7 - 3)² + (1 - 4)²) = √(4² + (-3)²) = √(16 + 9) = √25 = 5