- Enter n, the total number of items in the set. For example, if you have 10 candidates for 3 positions, n = 10.
- Enter r, the number of items being chosen or arranged. For 3 positions chosen from 10, r = 3.
- Permutation counts ordered arrangements. Choosing president, vice president, and treasurer from 10 people is a permutation because the order (who gets which role) matters.
- Combination counts unordered selections. Choosing 3 people for a committee from 10 is a combination because the order does not matter.
n is limited to 20 because factorials grow extremely fast (20! = 2,432,902,008,176,640,000).