Quickly calculate the Euclidean distance between two points in 2D or 3D space. Our easy-to-use Euclidean Space Calculator is perfect for students, engineers, and scientists needing precise measurements for geometry, physics, or computer graphics applications.
Formula:
The Euclidean distance `d` between two points (x1, y1) and (x2, y2) in a 2D plane is given by:
d = √((x2 - x1)2 + (y2 - y1)2)
For two points (x1, y1, z1) and (x2, y2, z2) in 3D space, the formula extends to:
d = √((x2 - x1)2 + (y2 - y1)2 + (z2 - z1)2)
Where:
- x1, y1, z1 = Coordinates of the first point
- x2, y2, z2 = Coordinates of the second point