AMC 10 · 2022 · #7

Grade 6 arithmetic
mean-median-mode-rangeconvert-to-algebralinear-equations-one-varsystematic-enumeration convert-to-algebraguess-and-checkidentify-subproblems ↑ Prerequisites: mean-median-mode-rangelinear-equations-one-var
📏 Long solution 💡 3 insights
Problem
Someone writes down five positive integers. Their unique mode is two more than their median, and their median is two more than their mean. Find the smallest possible value of the mode.

Pick an answer.

(A)
5
(B)
7
(C)
9
(D)
11
(E)
13
How to solve
Strategy Identify Subproblems

The problem packages three statistics (mode, median, mean) at once. Tool #7 (Subproblems) — break it into 'what does the sorted list look like?', 'what equation does the mean give?', and 'how small can the unknowns be?'. Tool #13 (Algebra) — once the shape is fixed, one equation in one unknown M tells the whole story. Tool #6 (Guess and Check) — try the smallest legal x₁, x₂ first; if parity fails, bump up. We avoid heavier inequality machinery — small directional guesses on positive integers find the floor cleanly.

1STEP 1

Place the median and mode

The mode takes the top two slots.

median = x₃ = M, mode = M + 2
2STEP 2

Write them sorted

Write all five sorted.

sorted: x₁, x₂, M, M+2, M+2, 1 ≤ x₁ < x₂ < M
3STEP 3

Use the mean condition

The mean fixes the total.

2M = x₁ + x₂ + 14
4STEP 4

Spot the parity condition

The bottom two must add to an even number.

x₁ + x₂ must be even
5STEP 5

Make it as small as possible

Take the bottom two as small as possible.

x₁ = 1, x₂ = 3 → 2M = 18 → M = 9
6STEP 6

Check a real example

Verify with an actual set of five.

{1,3,9,11,11}: mean=7, median=9, mode=11
7STEP 7

Read the minimum

The smallest mode is 11.

mode_min = 11 → (D)
Answer
11
Try a smaller mode and show it fails. Can mode = 9? Then M = 7 and 2M = 14, forcing x₁ + x₂ = 0 — impossible with positive integers. Can mode = 7? Then M = 5 and 2M = 10, forcing x₁ + x₂ = -4 — impossible. Can mode = 5? Then M = 3 and 2M = 6, forcing x₁ + x₂ = -8 — impossible. So choices (A), (B), (C) are all ruled out. (E) 13 would correspond to M = 11 and x₁ + x₂ = 8, which works but is not minimal. The smallest valid mode is indeed 11, matching (D).
💡Key takeaway

This AMC 12 problem only needs Grade 6 mean-median-mode and one-step equations you already know — sort the list as x₁, x₂, M, M+2, M+2, set up 2M = x₁ + x₂ + 14, pick the smallest distinct positive x₁, x₂ with even sum (1 and 3), and the mode lands at M + 2 = 11.