Midpoint Formula: M = ((x1 + x2)/2, (y1 + y2)/2)
The midpoint is the exact center point between two given points. It divides a line segment into two equal halves. The midpoint has coordinates that are the average of the corresponding coordinates of the two endpoints.
For two points (x1, y1) and (x2, y2):
M = ((x1 + x2)/2, (y1 + y2)/2)
For two points (x1, y1, z1) and (x2, y2, z2):
M = ((x1 + x2)/2, (y1 + y2)/2, (z1 + z2)/2)
The midpoint formula simply averages each coordinate:
Find the midpoint between (2, 4) and (8, 10):
Mx = (2 + 8) / 2 = 10 / 2 = 5 My = (4 + 10) / 2 = 14 / 2 = 7 Midpoint = (5, 7)
Find the midpoint between (-3, 5) and (7, -1):
Mx = (-3 + 7) / 2 = 4 / 2 = 2 My = (5 + (-1)) / 2 = 4 / 2 = 2 Midpoint = (2, 2)
Find the midpoint between (1, 2, 3) and (5, 8, 7):
Mx = (1 + 5) / 2 = 6 / 2 = 3 My = (2 + 8) / 2 = 10 / 2 = 5 Mz = (3 + 7) / 2 = 10 / 2 = 5 Midpoint = (3, 5, 5)
Finding centers of line segments, constructing bisectors, and locating centroids of shapes.
Calculating center points for animations, positioning objects, and subdivision algorithms.
Finding the halfway point between two locations for meeting points or rest stops.
Calculating center of mass for two-point systems with equal masses.