A fly trapped inside a cubical box with side length meter decides to relieve its boredom by visiting each corner of the box. It will begin and end in the same corner and visit each of the other corners exactly once. To get from a corner to any other corner, it will either fly or crawl in a straight line. What is the maximum possible length, in meters, of its path?
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
Each corner has one space diagonal and the tour uses two legs per corner, so at most 4 legs are space diagonals; the rest can be face diagonals.
Solution
The path is a closed tour through the corners, so it has legs. A leg between two corners is an edge (length ), a face diagonal (), or a space diagonal ().
Upper bound. Each corner is the endpoint of exactly one space diagonal (the one to the opposite corner). The tour passes through each corner exactly once, using two legs there, so at most one of those two legs is a space diagonal. Counting each space diagonal at both of its endpoints, the tour contains at most space diagonals. The remaining legs are at most each, so the length is at most .
Construction. Label corners by coordinates. The tour
alternates: the odd legs flip all three coordinates (space diagonals) and the even legs flip exactly two (face diagonals). It visits every corner once and has length exactly .
The answer is .
Why this works
A maximum needs two halves: a bound and an example that meets it. The bound comes from a local resource count (one space diagonal per corner, two legs per corner), and the example is found by alternating "opposite corner" jumps with face-diagonal jumps. The alternating pattern is natural once you notice that after a space diagonal you must leave by something shorter.
The trap
Picking choice (E), which needs 5 space diagonals, without checking that a corner can be the endpoint of only one space diagonal.
Common mistakes
- Picking choice (E), which needs 5 space diagonals, without checking that a corner can be the endpoint of only one space diagonal.
- Assuming the fly must crawl along edges or faces, which caps the answer at (A) or (B).
Techniques
Bound the quantity above/below or estimate to pin it down · Consider the largest/smallest element or boundary case