Input Values
Result
Enter coordinates and click Calculate to see the result.
About Distance Formula
The distance between two points in 2D space is calculated using the Pythagorean theorem. For points (x₁, y₁) and (x₂, y₂), the distance is:
d = √((x₂ - x₁)² + (y₂ - y₁)²)
This gives the straight-line distance (also called Euclidean distance) between the two points.