Distance Calculator (2D)

Find the distance between two 2D points.

Distance 5

Formula: d = √((x₂−x₁)² + (y₂−y₁)²)

Step-by-step with your numbers:
1. Values used:
2. x₁ = 0
3. y₁ = 0
4. x₂ = 3
5. y₂ = 4
6.
7. Distance = 5
Did we solve your problem today?

Straight-line distance between two points on a plane.

The math behind it

The distance formula is the Pythagorean theorem applied to the coordinate differences.

Worked example

(0,0) to (3,4) → 5.

FAQ

3D version?

Add the z-difference squared inside the root.