Given two points $A=(x_1, y_1, z_1)$ and $B=(x_2, y_2, z_2)$ on the tridimensional space how can I get the coordinates of the point located exactly on the half of the distance between the two points?
2026-04-08 19:15:25.1775675725
Half distance between two points in space
3.2k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
That point is the midpoint of $AB$ and is given by $(\frac{x_1+x_2}{2},\frac{y_1+y_2}{2},\frac{z_1+z_2}{2})$.