Skip to content
Medium

Midpoint of a Segment

Simple Explanation

The midpoint of a segment is the point exactly halfway between its two endpoints. Find it by averaging the x-coordinates and averaging the y-coordinates separately.

Why Do We Need It?

Midpoints let you find centre points β€” useful for balancing, dividing things equally, or finding the middle of any two locations.

See It

Midpoint of two draggable points
Try it β€” drag the points
-6-6-4-4-2-22244660xyM(1, 3)A (-2, 1)B (4, 5)

A coordinate plane with two draggable points and their midpoint marked and labelled

Formula

Midpoint Formula

M = ((x₁ + xβ‚‚)/2, (y₁ + yβ‚‚)/2)

The point exactly halfway between two given points.

M
β€” the midpoint
x₁, y₁
β€” the coordinates of the first point
xβ‚‚, yβ‚‚
β€” the coordinates of the second point

When to use it: Whenever you need the exact centre point of a segment joining two known points.

Worked Example

Find a midpoint

Find the midpoint of the segment joining P(2, -3) and Q(8, 7).

    Why Does This Work?

    Averaging each coordinate finds the exact "balance point" in each direction independently β€” halfway horizontally and halfway vertically together give the point exactly halfway along the segment.

    Real-Life Example

    Meeting halfway

    Two friends live at different points on a town map and want to meet at a fair, halfway location.

    Averaging their coordinates gives a meeting point exactly halfway between their two homes.

    Practice

    What is the midpoint of the segment joining (0, 0) and (6, 10)?

    Easy

    Common mistake

    Averaging an x-value with a y-value instead of averaging each coordinate with its own pair (mixing up (x₁+yβ‚‚)/2 with (x₁+xβ‚‚)/2).

    Quick Review

    • M = ((x₁+xβ‚‚)/2, (y₁+yβ‚‚)/2)
    • Average the x-values and the y-values separately.
    • The midpoint always lies exactly on the segment, halfway between the endpoints.