How do you find a number halfway between two numbers? You take their average. For instance, what's halfway between and ? It's .
You can use the same argument for two points. Since we need to find the midpoint of two 2D points, just take the average of their corresponding x and y coordinates.
Thus, x coordinate of the midpoint
y coordinate of the midpoint
Thus, the midpoint of the two points is .
Comments