Analyzing the Setup
Imagine standing in the center of a grand, circular stadium. Around you, 20 majestic pillars rise toward the sky, perfectly spaced along the boundary.
You are tasked with a challenge: to connect these pillars with beams, but with a specific constraint—you can only connect pillars that are not right next to each other. This is a classic puzzle of combinatorics.
Phase 1
The Total Possibilities
To solve this, we must first think big. Let us ignore the constraint for a moment and consider connecting every single pillar to every other pillar.
Each beam requires two endpoints. Since we have 20 pillars and we need to choose any 2 of them to form a beam, this is a combination problem denoted as 20C2.
The calculation is as follows:
So, there are 190 possible ways to connect any two pillars in this stadium.
Phase 2
The Hidden Trap
Now, we must address the constraint. The 190 connections we just calculated include every possible line segment, including the beams that connect adjacent pillars.
These adjacent connections form the sides of a 20-sided polygon. Since there are 20 pillars, there are exactly 20 such adjacent connections.
These are the beams we are forbidden from using.
Phase 3
The Elegant Solution
The logic now becomes clear and satisfying. We have the total number of possible connections (190) and the number of forbidden, adjacent connections (20).
To find the number of beams connecting non-adjacent pillars, we simply subtract the forbidden ones from the total:
Phase 4
The Beauty of Generalization
What we have just discovered is a fundamental property of polygons. The number of non-adjacent connections is equivalent to the number of diagonals in a polygon.
For any n-sided polygon, the number of diagonals is given by the formula:
If we test our result with this formula for n=20, we get:
220(20−3)=220×17=10×17=170
The math aligns perfectly. Whether you think of it as subtracting the boundary from the total or using the diagonal formula, the result is the same: 170 beams.