मुफ्त 3D दूरी सूत्र कैलकुलेटर

3D में दो बिंदुओं के बीच दूरी निकालें। x, y, z निर्देशांक से दूरी तुरंत गणना करें।

दूरी

7.071068

Distance 2d5.000000
Manhattan12.0000
Dx3.0000
Dy4.0000
Dz5.0000

सूत्र

Distance Formula

3D Distance

d = sqrt((x₂-x₁)² + (y₂-y₁)² + (z₂-z₁)²)

2D Distance

d = sqrt((x₂-x₁)² + (y₂-y₁)²)

Both are generalizations of the Pythagorean theorem.

Manhattan Distance

Also called taxicab distance: d = x₂-x₁+y₂-y₁+z₂-z₁

This is the distance when you can only move along grid lines (like streets in Manhattan).

हल किया गया उदाहरण

Distance from (1, 2, 3) to (4, 6, 8).

  1. 01dx = 3, dy = 4, dz = 5
  2. 023D distance = √(9 + 16 + 25) = √50 ≈ 7.0711
  3. 032D distance = √(9 + 16) = √25 = 5
  4. 04Manhattan distance = 3 + 4 + 5 = 12

अक्सर पूछे जाने वाले प्रश्न

What is the distance formula?

The distance formula calculates the straight-line (Euclidean) distance between two points. It is derived from the Pythagorean theorem applied to the coordinate differences.

What is Manhattan distance?

Manhattan distance (L1 distance) sums the absolute coordinate differences. It represents the shortest path along grid lines, like navigating city blocks.

When do I use 2D vs 3D distance?

Use 2D distance for flat surfaces (maps, screens). Use 3D distance when height/depth matters (e.g., flight paths, underwater distances, 3D modeling).

सीखें

How to Calculate Percentages - Complete Guide

संबंधित कैलकुलेटर