Midpoint Formula
The midpoint is the exact center point of a line segment. It is found by averaging the x-coordinates and y-coordinates of the two endpoints.
Midpoint = ((x₁+x₂)/2, (y₁+y₂)/2)
Example: Midpoint of (2,4) and (8,10) = (5, 7)
Example: Midpoint of (2,4) and (8,10) = (5, 7)
Applications of Midpoint
- Finding the center of a line segment
- Constructing perpendicular bisectors
- Dividing a path equally in navigation
- Computer graphics: interpolation between two points