Working with distance calculations involves several potential pitfalls that can lead to incorrect results:
Misconception 1: Distance vs. Displacement
Incorrect: Confusing distance (always positive) with displacement (can be negative).
Correct: Distance is the magnitude of the vector between two points and is always non-negative.
Misconception 2: Manhattan vs. Euclidean Distance
Incorrect: Using Manhattan distance (|x₂-x₁| + |y₂-y₁|) when Euclidean distance is needed.
Correct: Euclidean distance gives the straight-line distance, while Manhattan distance follows grid-like paths.
Misconception 3: Unit Consistency
Incorrect: Mixing different units (e.g., meters and feet) without proper conversion.
Correct: Ensure all coordinates use the same unit system before calculating distance.