Star Polygon — Definition, Formula & Examples
A star polygon is a polygon formed by connecting evenly spaced points on a circle in a pattern that skips over one or more points each time, so the sides cross each other and create a star shape.
A star polygon, denoted , is a figure formed by connecting every -th point of equally spaced points on a circle, where and are positive integers with and , producing a single closed path whose edges intersect.
Key Formula
Where:
- = Number of equally spaced points on the circle (must be at least 5 for a star)
- = Step size — how many points you skip plus one (must satisfy 2 ≤ k < n/2 and gcd(n, k) = 1)
How It Works
To draw a star polygon, place equally spaced points around a circle and number them 0 through . Starting at point 0, draw a straight line to point , then from point to point (mod ), and continue until you return to point 0. For example, a classic five-pointed star is : you connect every 2nd point out of 5. The value of must be greater than 1 (otherwise you just get a regular convex polygon) and must equal 1 so the path visits every point before closing.
Worked Example
Problem: Construct a {5/2} star polygon and find the measure of each point angle (the angle at each tip of the star).
Step 1: Place 5 equally spaced points on a circle and label them 0, 1, 2, 3, 4.
Step 2: Connect every 2nd point: 0→2→4→1→3→0. This traces a five-pointed star (a pentagram).
Step 3: The point angle at each tip of a {n/k} star polygon is given by the formula below. Substitute n = 5 and k = 2.
Answer: Each tip of a {5/2} star polygon measures 36°.
Why It Matters
Star polygons appear in flags, religious symbols, and architectural designs worldwide. Understanding them deepens your knowledge of polygon properties like concavity and symmetry, topics that come up throughout geometry courses.
Common Mistakes
Mistake: Confusing a star polygon with any star-shaped drawing. Students sometimes think any concave shape with points is a star polygon.
Correction: A true star polygon requires equally spaced vertices on a circle connected by a consistent step size , forming a single closed path with self-intersecting sides.
