Problem. Six soccer teams are competing in a tournament. Every team plays exactly three games, each against a different opponent. (Not every pair of teams plays each other.) How many different schedules are possible?
Graph theory framing. Represent each team as a vertex and each game as an edge connecting the two teams that play. The condition “every team plays exactly 3 games” means every vertex has degree 3. We must count all such graphs on 6 labeled vertices.
A quick check: since each edge contributes 2 to the total degree sum, the number of games per schedule is (6 × 3) / 2 = 9. Figure 1 shows one example.
We classify all possible 3-regular graphs on 6 vertices. There are exactly two structurally distinct types.
Why are these the only two types? Suppose some vertex (say team 1) belongs to a triangle with teams 2 and 3. Since each of teams 1, 2, 3 has degree 3 and already has 2 edges within the triangle, each must have exactly one edge leaving the triangle to some vertex in {4, 5, 6}. These three edges are distinct (they go to different vertices), so they form a perfect matching between {1, 2, 3} and {4, 5, 6}. Teams 4, 5, 6 each receive one cross-group edge, leaving each with 2 edges still needed — which must lie within {4, 5, 6}, forming a second triangle. This gives the Prism. Conversely, if no triangle exists, one can verify the only possibility is K3,3.
We only need to choose which 3 teams form Group A (the remaining 3 form Group B automatically, and the schedule is then fully determined). Since the partition {A,B,C} vs {D,E,F} is the same schedule as {D,E,F} vs {A,B,C}, divide by 2.
A Prism schedule requires two independent choices:
Different matchings produce genuinely different sets of games, so we multiply:
Every valid schedule is exactly one of these two types, so:
Answer: 70 schedules
Instead of asking which games are played, we ask which games are omitted.
In a full round-robin among 6 teams, every pair would play — that is K6, with C(6,2) = 15 games. Our schedule uses only 9 of these, so exactly 6 games are omitted per schedule. Since each team has 5 opponents in K6 but plays only 3, each team skips exactly 2 games. The 6 omitted games form their own graph — the complement of the schedule — in which every vertex has degree exactly 2.
A 2-regular graph is always a disjoint union of cycles covering all vertices. (Following any path, you can never get stuck — degree 2 guarantees a next edge — and you can never branch, so every path must eventually loop back to its start.)
We must partition all 6 vertices into cycles, each of length at least 3 (no loops or double edges). The partitions of 6 into parts ≥ 3 are:
Other partitions are impossible: 4+2 and 5+1 fail because 2 and 1 are less than 3.
How many distinct labeled 6-cycles exist on 6 vertices? There are 6! ways to arrange 6 teams in a sequence, but each cycle is counted 6 times by rotation and 2 times by the direction of traversal:
Each 6-cycle complement gives a unique schedule, so there are 60 schedules of this type.
Choose which 3 vertices form the first triangle: C(6,3) = 20 ways. The remaining 3 form the second triangle automatically. Since the two triangles play symmetric roles (neither is “first”), we divide by 2.
For each partition, there is exactly one triangle on any given 3 labeled vertices — by the same cycle-counting formula: (3−1)!/2 = 1. So each partition determines a unique complement, giving 10 schedules of this type.
Answer: 70 schedules
Both solutions partition all valid schedules into the same two cases, arrived at from opposite directions. The complement of a Prism schedule is a 6-cycle; the complement of a K3,3 schedule is two triangles. The table below shows the exact correspondence.
| Solution 1 (direct — schedule graph) | Solution 2 (indirect — complement graph) | Count |
|---|---|---|
|
Prism Contains triangles. Two groups play within each group, plus a cross-group matching. |
Complement is a 6-cycle The 6 omitted games form a single hexagonal cycle. Number of labeled 6-cycles = (6−1)!/2. |
60 |
|
K3,3 Triangle-free. All games cross the two-group boundary. |
Complement is two triangles The 6 omitted games form two disjoint 3-cycles. Number of two-triangle partitions = C(6,3)/2. |
10 |
| Total | 70 | |
Notice also the interplay of the two counting techniques:
Both approaches ultimately rest on the same algebraic facts; the complement lens simply offers a cleaner path to the harder case. As a general problem-solving principle: when the structure of what is present is difficult to classify directly, it can help to classify what is absent instead.