Manhattan Distance Calculator

Manhattan Distance Calculator - Multi-Tools

Manhattan Distance Calculator

Calculate the Manhattan distance between two points in 2D or 3D space.

Point 1
Point 2
How it works

The Manhattan distance between two points is calculated as:

  • For 2D: |x₂ - x₁| + |y₂ - y₁|
  • For 3D: |x₂ - x₁| + |y₂ - y₁| + |z₂ - z₁|

Where |x| represents the absolute value of x.

Scroll to Top