Analyzing the Setup
Imagine you are standing in a vast, open space, and before you lies a circle. On the boundary of this circle, you place n distinct points. These points are the vertices of a regular polygon.
Your task is to determine how many unique triangles you can form by connecting these vertices. To form a triangle, you need exactly three vertices.
Since this is a regular polygon, no three vertices are collinear. Every single combination of three vertices will yield a valid, non-degenerate triangle. Mathematically, we express this as:
The Ripple Effect of a New Vertex
Now, let us introduce a change. Suppose we add one more vertex to our polygon, transforming it from an n-sided polygon to an (n+1)-sided one. The number of triangles we can now form is:
The difference Tn+1−Tn represents the number of new triangles created by the addition of that single vertex. Every one of these new triangles must include the new vertex.
To complete such a triangle, we only need to select two more vertices from the original n vertices. Thus, the number of new triangles is simply (2n).
The Algebraic Bridge
We are given that the difference Tn+1−Tn=21. By our geometric reasoning, this means:
We can also arrive at this using the powerful tool of Pascal's Identity, which states that (rn+1)=(rn)+(r−1n). If we rearrange this, we get:
Setting r=3, we see that (3n+1)−(3n)=(2n). The algebra confirms our geometric intuition perfectly.
The Quadratic Resolution
Now, we descend into the final phase of our journey: solving for n. We know that:
Setting this equal to 21, we get:
Expanding this, we arrive at the quadratic equation:
We need two numbers that multiply to −42 and add to −1. Those numbers are −7 and 6. Thus, the equation factors into:
This gives us two potential roots: n=7 and n=−6. Since a polygon cannot have a negative number of sides, we discard n=−6.
We are left with the triumphant result: n=7. Our polygon is a heptagon.