Distance between two points
Enter the coordinates of both points.
Result
The distance between (1, 2) and (4, 6) is 5.
Example
Calculate the Euclidean distance between two points on a plane.
The distance between (1, 2) and (4, 6) is 5.
Processed locally in your browser.
Methodology
distance = √((x₂ − x₁)² + (y₂ − y₁)²).
Related tools