Geometry & Figures

Problem

Count segments between points on a line

The figure is a rectangle whose bottom edge is cut by an inward, battlement-shaped notch with a small raised tab in the middle. I must count how many straight line segments make up the whole outline, where a segment runs from one corner to the next.
GeometryOperations
Your answer
line segments
How to solve
Strategy Draw a Diagram — The cleanest way to count segments on a rectilinear outline is to trace it like a pencil walk and mark every corner where the direction changes; for a closed rectilinear shape the number of segments equals the number of corners. Walking the outline once, in order, is a systematic list that guarantees nothing is skipped or repeated.
1STEP 1

Trace the outer frame

Start at the top-left corner and walk clockwise. The top edge is one segment (1), the right edge down is one segment (2). So far 2 segments along the rectangle's top and right.

2
2STEP 2

Walk along the notched bottom

Continuing clockwise across the bottom: floor on the right (3), up into the notch (4), short ledge left (5), up the right side of the central tab (6), across the top of the tab (7), down the left side of the tab (8), short ledge left (9), down the left wall of the notch (10), and the floor on the left (11). That is 9 more segments.

2 + 9 = 11
3STEP 3

Close the loop with the left edge

Finally the left edge goes up from the bottom-left corner back to the top-left corner: that is the last segment (12), which closes the outline.

11 + 1 = 12
Answer
12 line segments
2 + 9 + 1 = 12
A plain rectangle has 4 segments. Cutting a battlement notch with a central tab into the bottom replaces the single bottom edge with a zig-zag that adds 8 extra corners, giving 12. Because the shape is closed and rectilinear, the count of segments equals the count of corners, and 12 corners is what the figure shows.
Takeaway

Walk the outline like a pencil and count every time it turns - each straight stretch between turns is one line segment!

  • Trace the outer frame
  • Walk along the notched bottom
  • Close the loop with the left edge
Where next?
Another one like thissuggested
Step back and solidifysuggested

▶ Practice — 5 problems