AMC 10 · 2013 · #24

Grade 8 counting
permutations-basiccaseworkcombinatorial-identity caseworksystematic-enumeration ↑ Prerequisites: permutations-basic
📏 Long solution 💡 4 insights
Problem
Two schools each field three players. Call them A,B,C (Central) and X,Y,Z (Northern). Every player must play two games against each opposing player. The whole match runs in six rounds, and in each round three games happen at the same time. Count the number of different schedules for the six rounds.

Pick an answer.

(A)
540
(B)
600
(C)
720
(D)
810
(E)
900

AMC 10 2013 problem © Mathematical Association of America (MAA AMC). Reproduced for educational use.

How to solve
Strategy Make a Systematic List

This is a "how many ways" count, so Tool #2 (Make a Systematic List) sets the target: list every legal way the six rounds can be built. The clean move is to see each round as one permutation of {X,Y,Z} against {A,B,C} (each player plays once per round), then use Tool #4 (Introduce a Variable): let n_π count how many rounds use permutation π. Tool #15 (Organize Information in More Ways) turns "each pair plays twice" into a 3 × 3 table of counts, which becomes a small system of linear equations. Solving it (Tool #7, Identify Subproblems: first find the valid round-multisets, then count orderings of each) gives just three families, and the answer is the total number of ordered schedules they generate.

1STEP 1

Each round is a one-to-one pairing

18 games exactly fill six rounds of three, so everyone plays once per round: a round pairs A,B,C with X,Y,Z — 3! = 6 possible rounds.

3 × 3 × 2 = 18 = 6 × 3, #rounds-types = 3! = 6
2STEP 2

Name the counts

Name the six pairings π₁,…,π₆ (π₁ the identity) and let n_i count the rounds using π_i, so n₁ + … + n₆ = 6.

n_i ≥ 0, Σ_i=1⁶ n_i = 6
3STEP 3

Turn "twice each" into equations

Each cross-team pair sits in exactly two pairings, so the nine cells of the 3 × 3 table give nine equations like n₁ + n₂ = 2.

n₁+n₂ = 2, n₁+n₃ = 2, n₁+n₄ = 2, n₄+n₅ = 2, …
4STEP 4

Solve the system

With t = n₁, the equations force n₂ = n₃ = n₄ = 2 - t and n₅ = n₆ = t, and each count lies in 0..2, so t = 0, 1, 2.

(n₁,…,n₆) = (t, 2-t, 2-t, 2-t, t, t), t ∈ {0,1,2}
5STEP 5

List the three families

t=1 uses all six pairings once; t=0 doubles the three swaps; t=2 doubles the identity and the two rotations. All three are legal.

t=1:{π₁,…,π₆}; t=0:{π₂²,π₃²,π₄²}; t=2:{π₁²,π₅²,π₆²}
6STEP 6

Order the all-distinct family

Rounds are played in order, so the six all-different rounds of the t=1 family can be arranged in 6! = 720 ways.

6! = 720
7STEP 7

Order each doubled family

A doubled family repeats three pairings, so swapping twins makes nothing new: 6!/2! 2! 2! = 90 orderings each.

6!/2! 2! 2! = 720/8 = 90
8STEP 8

Add the families

The three families never overlap, so add them: 720 + 90 + 90 = 900, choice (E).

720 + 90 + 90 = 900 → (E)
Answer
900
The three families are genuinely disjoint (they use different multisets of pairings), so adding is valid, and each was checked to cover all nine cross-team pairs exactly twice. The all-distinct count 6! = 720 already matches choice (C), which is the trap answer for anyone who forgets the two "doubled" schedules; the correct total adds the two 90s to reach 900. A quick lower-bound sanity check: there must be more than 720 schedules because the six-distinct case is only one of several patterns, and 900 is the smallest choice above 720 that our exact count produces. Everything points to 900.
💡Key takeaway

See each round as one full shuffle pairing the two teams, require every match-up to happen twice, and you find only three schedule patterns: six different shuffles (720 orders) or a doubled pattern of two kinds (90 each), giving 720 + 90 + 90 = 900.

  • Each round is a one-to-one pairing
  • Name the counts
  • Turn "twice each" into equations
  • Solve the system
  • List the three families
  • Order the all-distinct family
  • Order each doubled family
  • Add the families