PrevNext

Overview

Counting problems reward clear structure. Break a task into steps, multiply choices, and use symmetry to simplify.

Key Ideas

  • Rule of product: if step 1 has aa choices and step 2 has bb choices, there are abab total outcomes.
  • (nk)\binom{n}{k} counts kk-element subsets of an nn-element set.
  • When cases overlap, use inclusion-exclusion.

Worked Example

How many 3-digit numbers have strictly increasing digits?

Choose any 3 distinct digits from {0,1,2,,9}\{0,1,2,\ldots,9\}. There are (103)\binom{10}{3} choices. Each choice determines exactly one increasing number, but we must exclude those with a leading 00. If 00 is included, the number starts with 00 and is not 3-digit. The number of invalid choices is (92)\binom{9}{2}. So the answer is (103)(92)=12036=84\binom{10}{3} - \binom{9}{2} = 120 - 36 = 84.

Common Pitfalls

  • Double-counting when order does not matter.
  • Ignoring leading-zero restrictions.

Practice Problems

StatusSourceProblem NameDifficultyTags
AMC 8Normal
Show TagsCombinatorics, Counting
AMC 10Normal
Show TagsCasework, Combinations

Module Progress:

Join the AoPS Community!

Stuck on a problem, or don't understand a module? Join the AoPS community and get help from other math contest students.

PrevNext