Skip to main content
🟢 Beginner 🔥 Popular

Entfernungsrechner (Zwei Punkte)

Entfernung zwischen zwei Punkten mit der Formel √((x₂-x₁)² + (y₂-y₁)²) berechnen. Kostenloser Mathematikrechner für sofortige, genaue Ergebnisse.

★★★★★ 4.8/5 · 📊 0 calculations · 🔒 Private & free

Die Entfernungsformel

Die Entfernung zwischen zwei Punkten (x₁, y₁) und (x₂, y₂) in der Ebene wird mit der euklidischen Distanzformel berechnet:

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

Diese Formel ergibt sich direkt aus dem Satz des Pythagoras: Die Entfernung ist die Hypotenuse eines rechtwinkligen Dreiecks, wobei die beiden Katheten die horizontale und vertikale Differenz sind.

Beispiel: Punkte (1, 2) und (4, 6):
Δx = 4 − 1 = 3
Δy = 6 − 2 = 4
d = √(3² + 4²) = √(9 + 16) = √25 = 5

Dies ist ein Beispiel des klassischen 3-4-5-Pythagoräischen Tripels.

Entfernung in 3D: Erweiterung auf drei Dimensionen

Für drei Dimensionen erweitert sich die Formel:

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

Beispiel: Punkte (1, 2, 3) und (4, 6, 8):
d = √((4−1)² + (6−2)² + (8−3)²) = √(9 + 16 + 25) = √50 ≈ 7,07

Anwendungen der Entfernungsformel

Die Entfernungsformel ist überall in Mathematik und Technik:

Häufig gestellte Fragen

Wie berechnet man die Entfernung zwischen zwei Punkten?

Verwenden Sie die Entfernungsformel: d = √((x₂−x₁)² + (y₂−y₁)²). Berechnen Sie den Unterschied in den x-Koordinaten, quadrieren Sie ihn, tun Sie dasselbe für die y-Koordinaten, addieren Sie beide Quadrate und nehmen Sie die Wurzel.

Was ist die Mittelpunktformel?

Der Mittelpunkt zweier Punkte: M = ((x₁+x₂)/2, (y₁+y₂)/2). Für die Punkte (1, 2) und (5, 8): M = ((1+5)/2, (2+8)/2) = (3, 5).

Wie berechne ich die Entfernung zwischen zwei Adressen?

Die Entfernungsformel gilt für kartesische Koordinaten (flache Ebene). Für geografische Koordinaten (Längen- und Breitengrad) auf der Erdoberfläche verwenden Sie die Haversine-Formel oder das Vincenty-Verfahren, die die Erdkrümmung berücksichtigen.

<p><strong>Engineering and construction:</strong> Calculating distances between two points on a blueprint, determining cable lengths between towers, measuring diagonal spans — all use the 2D or 3D distance formula with real-world coordinates.</p>
<p><strong>Physics simulations:</strong> Gravitational force, electromagnetic force, and spring forces all depend on distance between objects. Simulation engines calculate pairwise distances between particles or objects at each timestep.</p>

Common Pythagorean Triples Reference

Pythagorean triples are sets of three positive integers (a, b, c) satisfying a² + b² = c². When your two points have integer coordinates whose horizontal and vertical separations form a Pythagorean triple, the distance will be an exact integer — a satisfying and easily verified result.

a (Δx)b (Δy)c (Distance)Scaled version
3456-8-10, 9-12-15
5121310-24-26
8151716-30-34
7242514-48-50
20212940-42-58
9404118-80-82

Any multiple of a Pythagorean triple is also a triple: (3,4,5) scales to (6,8,10), (9,12,15), etc. The 3-4-5 triple is by far the most commonly encountered in coursework and applications.

Distance in Different Metrics: Euclidean vs Manhattan vs Chebyshev

Euclidean distance is the most natural "straight-line" distance, but different applications benefit from different distance metrics. Understanding when to use each is important in data science, logistics, and game design.

Euclidean distance (our calculator) = √((Δx)² + (Δy)²). Best for: physical distances, GPS, mechanics. Models a crow flying in a straight line.

Manhattan distance (L1 norm) = |Δx| + |Δy|. Best for: grid-based navigation (city blocks), warehouse robotics, some machine learning applications. Models a taxi driving in a city grid — only horizontal and vertical movement allowed.

Chebyshev distance (L∞ norm) = max(|Δx|, |Δy|). Best for: chessboard king moves (a king can move one step in any of 8 directions), certain manufacturing operations. Models the minimum number of king moves to travel between two squares on a chessboard.

MetricFormulaBest For
Euclidean√((Δx)² + (Δy)²)Physical distance, GPS, physics
Manhattan (L1)|Δx| + |Δy|Grid navigation, city distances
Chebyshev (L∞)max(|Δx|, |Δy|)Chess, certain manufacturing
Minkowski (Lp)(|Δx|ᵖ + |Δy|ᵖ)^(1/p)General; p=2 is Euclidean, p=1 is Manhattan

How to Use This Distance Calculator

Enter the x and y coordinates of two points, then click Calculate. The calculator instantly returns the straight-line Euclidean distance between the points, computed as √((x₂−x₁)² + (y₂−y₁)²).

Input tips:

Frequently Asked Questions

What is the distance formula between two points?

d = √((x₂−x₁)² + (y₂−y₁)²). Subtract the coordinates, square each difference, add the squares, and take the square root. This gives the straight-line (Euclidean) distance between the two points.

Does it matter which point is (x₁,y₁) and which is (x₂,y₂)?

No. The distance formula gives the same result either way because differences are squared: (x₂−x₁)² = (x₁−x₂)². Distance is symmetric — d(A,B) = d(B,A).

What is the distance between two identical points?

Zero. If (x₁,y₁) = (x₂,y₂), then d = √((0)² + (0)²) = 0. A point is always zero distance from itself.

How do I find the distance in 3D space?

Extend the formula: d = √((x₂−x₁)² + (y₂−y₁)² + (z₂−z₁)²). For example, distance from (1,2,3) to (4,6,3): d = √(9+16+0) = √25 = 5.

What is the difference between distance and displacement?

Distance is a scalar (magnitude only) — how far apart two points are. Displacement is a vector (magnitude and direction) — the directed line segment from one point to the other. The distance formula gives the magnitude of displacement. Two different paths between the same points may have different path lengths but the same (straight-line) distance.

What are Pythagorean triples and why do they matter?

Pythagorean triples are integer sets (a, b, c) where a² + b² = c². Common ones: 3-4-5, 5-12-13, 8-15-17. When Δx and Δy match a Pythagorean triple, the distance is an exact integer. This is why the 3-4-5 triple appears so frequently in geometry problems and construction (it guarantees a right angle when building corners).

What is the midpoint formula?

The midpoint M between (x₁,y₁) and (x₂,y₂) is M = ((x₁+x₂)/2, (y₁+y₂)/2). It is the average of each coordinate pair. The midpoint is exactly half the distance from each endpoint.

How is distance calculation used in GPS and mapping?

GPS uses latitude/longitude coordinates. For short distances, the Pythagorean formula works adequately. For longer distances, the Haversine formula accounts for Earth's curvature: d = 2R × arcsin(√(sin²(Δlat/2) + cos(lat₁)cos(lat₂)sin²(Δlon/2))), where R is Earth's radius (~6,371 km). Google Maps and navigation systems use this or the Vincenty formula for maximum accuracy.

What is Manhattan distance vs Euclidean distance?

Euclidean distance = √((Δx)² + (Δy)²) — the straight-line distance. Manhattan distance = |Δx| + |Δy| — the sum of horizontal and vertical steps, like navigating city blocks. Manhattan distance ≥ Euclidean distance always; they're equal only when movement is perfectly horizontal or vertical. Use Manhattan distance for grid-based navigation; use Euclidean for straight-line physical distance.

Can the distance formula be negative?

No. Distance is always non-negative. The square root function returns non-negative values, and the sum of squared differences is always ≥ 0. Distance equals zero only when the two points are identical. If you're getting a negative result, check that you're applying the formula correctly — perhaps confusing distance with a signed difference or displacement component.

Distance in Physics and Engineering Applications

The distance formula is not just a geometry exercise — it is used constantly in physics, engineering, and computer science to model real-world spatial relationships. Understanding the formula's role in these fields helps connect classroom mathematics to practical applications.

Inverse square laws: Both gravity and electromagnetic force follow inverse square laws — the force is proportional to 1/d², where d is the distance between two objects. Calculating d using the distance formula between position vectors is the first step in computing gravitational attraction between planets, electrostatic attraction between charges, or the intensity of light from a source.

Robotics and path planning: Robot navigation systems constantly compute distances between waypoints, obstacles, and targets. A robot arm controller calculates end-effector position using distance and angle calculations. Autonomous vehicles compute distances to other vehicles and lane boundaries dozens of times per second for collision avoidance.

Surveying and land measurement: Land surveyors use coordinate geometry to measure property boundaries and areas. Given survey coordinates (northings and eastings), the distance formula calculates boundary segment lengths. Modern GPS surveying equipment uses the same mathematical principles, now enhanced with satellite triangulation for centimeter-level accuracy.

Computer graphics: Ray tracing, collision detection, shadow calculation, and ambient occlusion in 3D rendering all require constant distance computation between geometric primitives. The GPU processes millions of distance calculations per frame to produce photorealistic images in real time — all based on the same fundamental formula you're using in this calculator. The distance formula is not a relic of classroom geometry — it is an active, essential tool running billions of computations per second in the technology we use every day.