Numbers & Place Value

Problem

Overlap of two ranges on a number line

Two number ranges are described in words. The first holds every number from 48 up to 72, including 48 and 72. The second holds every number strictly between 56 and 93, not including 56 or 93. I need to count the whole numbers that sit inside BOTH ranges at the same time.
ExpressionsNumber system
Your answer
How to solve
Strategy Draw a Diagram — Drawing both ranges on one number line makes the overlap visible as the stretch the two bars share. The hard part is the endpoints, so I split the work into subproblems: find the smallest whole number in the overlap, find the largest, then count.
1STEP 1

Picture both ranges on a number line

Shade both ranges on one number line, solid dots where an end is included and open dots where it is not.

48 ≤ x ≤ 72 and 56 < x < 93
2STEP 2

Find the left edge of the overlap

The later start wins and 56 is shut out, so the overlap begins at 57.

56 < x → smallest whole number = 57
3STEP 3

Find the right edge of the overlap

The earlier end wins and 72 is allowed, so the overlap stops at 72.

x ≤ 72 → largest whole number = 72
4STEP 4

Count the whole numbers from 57 to 72

A run of whole numbers counts as last minus first plus one: 72 - 57 + 1 = 16.

72 - 57 + 1 = 16
Answer
16
The overlap runs 57, 58, ..., 72. That is a small slice well inside both ranges, and 16 numbers is reasonable for a span of about 15 apart. Spot-check the edges: 57 is greater than 56 (yes) and at most 72 (yes), so 57 counts; 56 fails because it is not greater than 56; 73 fails because it is more than 72. The endpoints behave exactly as the rules require.
Takeaway

When two ranges overlap, the shared part starts at the later beginning and stops at the earlier ending—then just count the whole numbers in between.

  • Picture both ranges on a number line
  • Find the left edge of the overlap
  • Find the right edge of the overlap
  • Count the whole numbers from 57 to 72
Where next?
Another one like thissuggested

▶ Practice — 12 problems