Calculate the distance between two points on a 3-dimensional coordinate, enter the three coordinates for each point, and discover the distance between them.
Formula:
X1, Y1 Z1 = Coordinates of the first point
X2, Y2 Z2 = Coordinates of the second point
Distance = √(X2 - X1)2 + (Y2 - Y1)2 + (Z2 - Z1)2
Example:
First point at Coordinates of X1 = 10, Y1 = 20, Z1 = 25
Second point at Coordinates of X2 = 60, Y2 = -30, Z2 = 5
Distance = √(X2 - X1)2 + (Y2 - Y1)2 + (Z2 - Z1)2 = √(60 - 10)2 + (-30 - 20)2 + (5 - 25)2 = √2500 + 2500 + 400 = √5400 = 73.49